On 20/03/21 11:31 pm, [email protected] wrote:
...
+ */
+public class NullOutputStream extends OutputStream {
+
+ /**
+ * Shared instance which is safe to use concurrently as the stream
+ * doesn't hold any state at all.
+ */
+ public static NullOutputStream INSTANCE = new NullOutputStream();
+
+
Should we consider adding a private constructor to prevent anyone from
directly instantiating this class? It won't make that major a
difference, but since we already expose this INSTANCE, it probably is a
good idea to prevent direct instantiation?
-Jaikiran
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]