File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -90,11 +90,12 @@ public static void main(String[] args) throws IOException {
9090 StringWriter sw = new StringWriter ();
9191 try (PrintWriter out = new PrintWriter (sw )) {
9292 out .println ("package bwapi;" );
93- out .println ("import java.nio.ByteBuffer; " );
93+ out .println ("" );
9494 out .println ("final class ClientData {" );
9595 out .println (" final WrappedBuffer buffer;" );
96- out .println (" ClientData(final ByteBuffer buffer) {" );
97- out .println (" this.buffer = new WrappedBuffer(buffer);" );
96+ out .println ("" );
97+ out .println (" ClientData(final WrappedBuffer buffer) {" );
98+ out .println (" this.buffer = buffer;" );
9899 out .println (" }" );
99100 structs .values ().forEach (s -> {
100101 out .printf (" class %s {\n " , s .name );
You can’t perform that action at this time.
0 commit comments