()
| 9 | public Deserializer(byte[] bytes) { this.bytes = bytes; } |
| 10 | |
| 11 | public Object call() throws Exception { |
| 12 | return deserialize(bytes); |
| 13 | } |
| 14 | |
| 15 | public static Object deserialize(final byte[] serialized) throws IOException, ClassNotFoundException { |
| 16 | final ByteArrayInputStream in = new ByteArrayInputStream(serialized); |
nothing calls this directly
no test coverage detected