Style Correction
Style Correction
This commit is contained in:
parent
e0ca514118
commit
98528e849e
@ -9,8 +9,7 @@ import java.io.Serializable;
|
|||||||
|
|
||||||
public class SerializationUtils {
|
public class SerializationUtils {
|
||||||
|
|
||||||
public static <T extends Serializable> byte[] serialize(T obj)
|
public static <T extends Serializable> byte[] serialize(T obj) throws IOException {
|
||||||
throws IOException {
|
|
||||||
ByteArrayOutputStream baos = new ByteArrayOutputStream();
|
ByteArrayOutputStream baos = new ByteArrayOutputStream();
|
||||||
ObjectOutputStream oos = new ObjectOutputStream(baos);
|
ObjectOutputStream oos = new ObjectOutputStream(baos);
|
||||||
oos.writeObject(obj);
|
oos.writeObject(obj);
|
||||||
@ -30,4 +29,3 @@ public class SerializationUtils {
|
|||||||
return it.isPrimitive() || it.isInterface() || Serializable.class.isAssignableFrom(it);
|
return it.isPrimitive() || it.isInterface() || Serializable.class.isAssignableFrom(it);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -68,7 +68,8 @@ public class SerializationUnitTest {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void whenSerializingAndDeserializingUsingCustomSerializationUtils_ThenObjectIsTheSame() throws IOException, ClassNotFoundException {
|
public void whenSerializingAndDeserializingUsingCustomSerializationUtils_ThenObjectIsTheSame()
|
||||||
|
throws IOException, ClassNotFoundException {
|
||||||
Person p = new Person();
|
Person p = new Person();
|
||||||
p.setAge(20);
|
p.setAge(20);
|
||||||
p.setName("Joe");
|
p.setName("Joe");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user