mbenson 2005/01/19 09:14:01 Modified: src/main/org/apache/tools/ant/util LazyFileOutputStream.java Log: Minor javadoc. Revision Changes Path 1.7 +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.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- LazyFileOutputStream.java 20 Feb 2004 18:07:44 -0000 1.6 +++ LazyFileOutputStream.java 19 Jan 2005 17:14:01 -0000 1.7 @@ -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]