(Object object)
| 10 | private final Object object; |
| 11 | |
| 12 | public Serializer(Object object) { |
| 13 | this.object = object; |
| 14 | } |
| 15 | |
| 16 | public static byte[] serialize(final Object obj) throws IOException { |
| 17 | final ByteArrayOutputStream out = new ByteArrayOutputStream(); |
nothing calls this directly
no outgoing calls
no test coverage detected