MCPcopy Create free account
hub / github.com/Hiro420/NikkeTools / Output

Method Output

UnLuac/src/unluac/decompile/Output.java:9–28  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected