(ObjectOutputStream s)
| 223 | } |
| 224 | |
| 225 | private void writeObject(ObjectOutputStream s) throws IOException { |
| 226 | s.defaultWriteObject(); |
| 227 | s.writeLong(sum()); |
| 228 | } |
| 229 | |
| 230 | private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException { |
| 231 | s.defaultReadObject(); |
no test coverage detected