Skip to content

Commit 9269472

Browse files
committed
noted the call over to the byte[] method
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/io/trunk@140519 13f79535-47bb-0310-9956-ffa450edef68
1 parent 1c102ba commit 9269472

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/java/org/apache/commons/io/output/ByteArrayOutputStream.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
* designed to behave exactly like the original. The only exception is the
4343
* deprecated toString(int) method that has been ignored.
4444
* @author <a href="mailto:jeremias@apache.org">Jeremias Maerki</a>
45-
* @version $Id: ByteArrayOutputStream.java,v 1.6 2004/02/23 04:40:29 bayard Exp $
45+
* @version $Id: ByteArrayOutputStream.java,v 1.7 2004/02/23 04:48:17 bayard Exp $
4646
*/
4747
public class ByteArrayOutputStream extends OutputStream {
4848

@@ -139,6 +139,8 @@ public synchronized void write(byte[] b, int off, int len) {
139139
}
140140

141141
/**
142+
* Calls the write(byte[]) method.
143+
*
142144
* @see java.io.OutputStream#write(int)
143145
*/
144146
public synchronized void write(int b) {

0 commit comments

Comments
 (0)