(Object object)
| 9 | public class Serializer implements Callable<byte[]> { |
| 10 | private final Object object; |
| 11 | public Serializer(Object object) { |
| 12 | this.object = object; |
| 13 | } |
| 14 | |
| 15 | public byte[] call() throws Exception { |
| 16 | return serialize(object); |
nothing calls this directly
no outgoing calls
no test coverage detected