conor 2003/02/16 06:06:26
Modified: src/main/org/apache/tools/ant/taskdefs Tag: ANT_15_BRANCH StreamPumper.java Log: Merge Revision Changes Path No revision No revision 1.7.2.2 +2 -1 ant/src/main/org/apache/tools/ant/taskdefs/StreamPumper.java Index: StreamPumper.java =================================================================== RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/StreamPumper.java,v retrieving revision 1.7.2.1 retrieving revision 1.7.2.2 diff -u -w -u -r1.7.2.1 -r1.7.2.2 --- StreamPumper.java 10 Feb 2003 14:24:45 -0000 1.7.2.1 +++ StreamPumper.java 16 Feb 2003 14:06:26 -0000 1.7.2.2 @@ -108,7 +108,8 @@ Thread.sleep(SLEEP); } catch (InterruptedException e) {} } - } catch (IOException e) { + } catch (Exception e) { + // ignore } finally { synchronized (this) { finished = true;