()
| 7 | private int position = 0; |
| 8 | |
| 9 | public Output() { |
| 10 | this(new OutputProvider() { |
| 11 | |
| 12 | @Override |
| 13 | public void print(String s) { |
| 14 | System.out.print(s); |
| 15 | } |
| 16 | |
| 17 | @Override |
| 18 | public void print(byte b) { |
| 19 | System.out.write(b); |
| 20 | } |
| 21 | |
| 22 | @Override |
| 23 | public void println() { |
| 24 | System.out.println(); |
| 25 | } |
| 26 | |
| 27 | }); |
| 28 | } |
| 29 | |
| 30 | public Output(OutputProvider out) { |
| 31 | this.out = out; |
nothing calls this directly
no outgoing calls
no test coverage detected