Skip to content

Commit 074cd6d

Browse files
author
Gary Gregory
committed
Javadoc.
1 parent 02628ba commit 074cd6d

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,14 @@
2929
*/
3030
public class NullPrintStream extends PrintStream {
3131

32+
/**
33+
* The singleton instance.
34+
*/
3235
public static final NullPrintStream NULL_PRINT_STREAM = new NullPrintStream();
3336

37+
/**
38+
* Constructs an instance.
39+
*/
3440
@SuppressWarnings("resource")
3541
public NullPrintStream() {
3642
super(new NullOutputStream());

0 commit comments

Comments
 (0)