(DataOutputStream output)
| 4241 | } |
| 4242 | |
| 4243 | void write(DataOutputStream output) throws IOException { |
| 4244 | output.writeInt(size()); |
| 4245 | for (String str : indexToData) { |
| 4246 | output.writeUTF(str); |
| 4247 | } |
| 4248 | } |
| 4249 | |
| 4250 | private void writeln(PrintWriter writer) throws IOException { |
| 4251 | for (String str : indexToData) { |