(int size)
| 21 | private final byte[] input; |
| 22 | |
| 23 | public MapReader(int size) throws IOException { |
| 24 | this.input = generate(size); |
| 25 | } |
| 26 | |
| 27 | private static byte[] generate(int size) throws IOException { |
| 28 | ByteArrayOutputStream out = new ByteArrayOutputStream(size * 17); |