Skip to content

Commit 9e8cb86

Browse files
committed
Javadoc: Add missing constructor Javadoc comments
1 parent 53f3d02 commit 9e8cb86

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

src/main/java/org/apache/commons/io/output/AbstractByteArrayOutputStream.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,13 @@ protected interface InputStreamConstructor<T extends InputStream> {
9898
/** Flag to indicate if the buffers can be reused after reset */
9999
private boolean reuseBuffers = true;
100100

101+
/**
102+
* Constructs a new instance for subclasses.
103+
*/
104+
public AbstractByteArrayOutputStream() {
105+
// empty
106+
}
107+
101108
/**
102109
* Does nothing.
103110
*

0 commit comments

Comments
 (0)