peterreilly    2005/01/24 07:32:05

  Modified:    src/main/org/apache/tools/ant/util Tag: ANT_16_BRANCH
                        OutputStreamFunneler.java
  Log:
  sync
  
  Revision  Changes    Path
  No                   revision
  No                   revision
  1.1.2.3   +3 -3      
ant/src/main/org/apache/tools/ant/util/OutputStreamFunneler.java
  
  Index: OutputStreamFunneler.java
  ===================================================================
  RCS file: 
/home/cvs/ant/src/main/org/apache/tools/ant/util/OutputStreamFunneler.java,v
  retrieving revision 1.1.2.2
  retrieving revision 1.1.2.3
  diff -u -r1.1.2.2 -r1.1.2.3
  --- OutputStreamFunneler.java 12 Nov 2004 11:08:02 -0000      1.1.2.2
  +++ OutputStreamFunneler.java 24 Jan 2005 15:32:05 -0000      1.1.2.3
  @@ -1,5 +1,5 @@
   /*
  - * Copyright 2004 The Apache Software Foundation
  + * Copyright 2004-2005 The Apache Software Foundation
    *
    *  Licensed under the Apache License, Version 2.0 (the "License");
    *  you may not use this file except in compliance with the License.
  @@ -19,7 +19,6 @@
   
   import java.io.IOException;
   import java.io.OutputStream;
  -import java.io.FilterOutputStream;
   
   /**
    * Manages a set of <CODE>OutputStream</CODE>s to
  @@ -35,7 +34,7 @@
        */
       public static final long DEFAULT_TIMEOUT_MILLIS = 1000;
   
  -    private class Funnel extends OutputStream {
  +    private final class Funnel extends OutputStream {
           private boolean closed = false;
   
           private Funnel() {
  @@ -126,6 +125,7 @@
        * write to this <CODE>OutputStreamFunneler</CODE>'s underlying
        * <CODE>OutputStream</CODE>.
        * @return <code>OutputStream</code>.
  +     * @throws IOException if unable to create the funnel.
        */
       public synchronized OutputStream getFunnelInstance()
           throws IOException {
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to