# This patch file was generated by NetBeans IDE # This patch can be applied using context Tools: Patch action on respective folder. # It uses platform neutral UTF-8 encoding and \n newlines. # Above lines and this line are ignored by the patching process. Index: UcmCommon.java --- UcmCommon.java Base (BASE) +++ UcmCommon.java Locally Modified (Based On LOCAL) @@ -180,6 +180,7 @@ List baselines = new ArrayList(); try { for (String line = rd.readLine(); line != null; line = rd.readLine()) { + if (!line.startsWith("cleartool: Error:")) { String[] bl = line.split(" "); for (String b : bl) { if (StringUtils.isNotBlank(b)) { @@ -187,6 +188,7 @@ } } } + } } finally { rd.close(); }