(PrintWriter writer)
| 4248 | } |
| 4249 | |
| 4250 | private void writeln(PrintWriter writer) throws IOException { |
| 4251 | for (String str : indexToData) { |
| 4252 | writer.println(str); |
| 4253 | } |
| 4254 | writer.flush(); |
| 4255 | writer.close(); |
| 4256 | } |
| 4257 | |
| 4258 | void read(DataInputStream input) throws IOException { |
| 4259 | int count = input.readInt(); |
no test coverage detected