This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-io.git
The following commit(s) were added to refs/heads/master by this push:
new 074cd6d Javadoc.
074cd6d is described below
commit 074cd6d15154184147f754f53765ccddd3a1f332
Author: Gary Gregory <[email protected]>
AuthorDate: Tue Jun 25 09:01:13 2019 -0400
Javadoc.
---
src/main/java/org/apache/commons/io/output/NullPrintStream.java | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/src/main/java/org/apache/commons/io/output/NullPrintStream.java
b/src/main/java/org/apache/commons/io/output/NullPrintStream.java
index c81d29f..73d1334 100644
--- a/src/main/java/org/apache/commons/io/output/NullPrintStream.java
+++ b/src/main/java/org/apache/commons/io/output/NullPrintStream.java
@@ -29,8 +29,14 @@ import java.io.PrintStream;
*/
public class NullPrintStream extends PrintStream {
+ /**
+ * The singleton instance.
+ */
public static final NullPrintStream NULL_PRINT_STREAM = new
NullPrintStream();
+ /**
+ * Constructs an instance.
+ */
@SuppressWarnings("resource")
public NullPrintStream() {
super(new NullOutputStream());