/* */ public static byte[] toByteArray(Object obj)
/* */ {
/* */ try
/* */ {
/* 47 */ ByteArrayOutputStream os = new ByteArrayOutputStream();
/* 48 */ ObjectOutputStream oos = new CustomObjectOutputStream(os);
/* */
/* 50 */ oos.writeObject(obj);
/* 51 */ oos.flush();
/* 52 */ byte[] a = os.toByteArray();
/* 53 */ os.close();
/* 54 */ return a;
/* */ } catch (IOException ioe) {
/* */ }