/* */
/* */ public static Object toObject(byte[] a, ClassLoader cl)
/* */ throws IOException, ClassNotFoundException
/* */ {
/* 70 */ ByteArrayInputStream is = new ByteArrayInputStream(a);
/* 71 */ ObjectInputStream ois = new CustomObjectInputStreamWithClassloader(is, cl);
/* */
/* 73 */ Object obj = ois.readObject();
/* 74 */ is.close();
/* 75 */ return obj;
/* */ }