(PrintWriter writer)
| 4347 | } |
| 4348 | |
| 4349 | private void writeln(PrintWriter writer) throws IOException { |
| 4350 | for (String str : indexToData) { |
| 4351 | writer.println(str); |
| 4352 | } |
| 4353 | writer.flush(); |
| 4354 | writer.close(); |
| 4355 | } |
| 4356 | |
| 4357 | void read(DataInputStream input) throws IOException { |
| 4358 | int count = input.readInt(); |
no test coverage detected