MCPcopy Create free account
hub / github.com/Ape1ron/SpringAopInDeserializationDemo1 / deserialize

Method deserialize

src/main/java/Util.java:47–52  ·  view source on GitHub ↗
(byte[] ser)

Source from the content-addressed store, hash-verified

45 }
46
47 public static Object deserialize(byte[] ser) throws IOException, ClassNotFoundException {
48 System.out.println("deserialize obj");
49 final ByteArrayInputStream in = new ByteArrayInputStream(ser);
50 final ObjectInputStream objIn = new ObjectInputStream(in);
51 return objIn.readObject();
52 }
53
54
55 /**

Callers 1

runGadgetsMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected