Skip to content

Commit 6f58ee5

Browse files
committed
Javadoc
1 parent c00374e commit 6f58ee5

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,11 @@
3737
* NOTE: This implementation may trigger the event <em>before</em> the threshold is actually reached, since it triggers
3838
* when a pending write operation would cause the threshold to be exceeded.
3939
* </p>
40+
* <p>
41+
* See also the subclass {@link DeferredFileOutputStream}.
42+
* </p>
43+
*
44+
* @see DeferredFileOutputStream
4045
*/
4146
public class ThresholdingOutputStream extends OutputStream {
4247

src/test/java/org/apache/commons/io/output/ThresholdingOutputStreamTest.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@
2929
import org.junit.jupiter.api.Test;
3030

3131
/**
32-
* Tests {@link ThresholdingOutputStream}.
32+
* Tests {@link ThresholdingOutputStream}. See also the subclass {@link DeferredFileOutputStream}.
33+
*
34+
* @see DeferredFileOutputStream
3335
*/
3436
public class ThresholdingOutputStreamTest {
3537

0 commit comments

Comments
 (0)