MCPcopy Create free account
hub / github.com/0linlin0/CyberBox / Serializer

Method Serializer

Skay_Exp/src/tools/Serializer.java:11–13  ·  view source on GitHub ↗
(Object object)

Source from the content-addressed store, hash-verified

9public 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);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected