| 15 | private final boolean autoFlush; |
| 16 | |
| 17 | private static class Static { |
| 18 | private static final byte[] newline |
| 19 | = System.getProperty("line.separator").getBytes(); |
| 20 | } |
| 21 | |
| 22 | public PrintStream(OutputStream out, boolean autoFlush) { |
| 23 | this.out = out; |
nothing calls this directly
no test coverage detected