(DataOutputStream output)
| 4340 | } |
| 4341 | |
| 4342 | void write(DataOutputStream output) throws IOException { |
| 4343 | output.writeInt(size()); |
| 4344 | for (String str : indexToData) { |
| 4345 | output.writeUTF(str); |
| 4346 | } |
| 4347 | } |
| 4348 | |
| 4349 | private void writeln(PrintWriter writer) throws IOException { |
| 4350 | for (String str : indexToData) { |