mbenson     2005/01/19 09:15:10

  Modified:    src/main/org/apache/tools/ant/util Tag: ANT_16_BRANCH
                        LazyFileOutputStream.java
  Log:
  Merge
  
  Revision  Changes    Path
  No                   revision
  No                   revision
  1.1.2.5   +4 -2      
ant/src/main/org/apache/tools/ant/util/LazyFileOutputStream.java
  
  Index: LazyFileOutputStream.java
  ===================================================================
  RCS file: 
/home/cvs/ant/src/main/org/apache/tools/ant/util/LazyFileOutputStream.java,v
  retrieving revision 1.1.2.4
  retrieving revision 1.1.2.5
  diff -u -r1.1.2.4 -r1.1.2.5
  --- LazyFileOutputStream.java 22 Apr 2004 21:33:06 -0000      1.1.2.4
  +++ LazyFileOutputStream.java 19 Jan 2005 17:15:10 -0000      1.1.2.5
  @@ -1,5 +1,5 @@
   /*
  - * Copyright  2003-2004 The Apache Software Foundation
  + * Copyright  2003-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.
  @@ -103,18 +103,20 @@
       }
   
       /**
  -     * Delegates to the three arg version.
  +     * Delegates to the three-arg version.
        */
       public void write(byte[] b) throws IOException {
           write(b, 0, b.length);
       }
   
  +    //inherit doc
       public synchronized void write(byte[] b, int offset, int len)
           throws IOException {
           ensureOpened();
           fos.write(b, offset, len);
       }
   
  +    //inherit doc
       public synchronized void write(int b) throws IOException {
           ensureOpened();
           fos.write(b);
  
  
  

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

Reply via email to