Use try-with-resources
This commit is contained in:
@@ -193,14 +193,13 @@ public class DefaultConfigTestCase extends TestCase {
|
|||||||
|
|
||||||
// Serialize and deserialize the instance
|
// Serialize and deserialize the instance
|
||||||
final ByteArrayOutputStream baos = new ByteArrayOutputStream();
|
final ByteArrayOutputStream baos = new ByteArrayOutputStream();
|
||||||
final ObjectOutputStream oos = new ObjectOutputStream(baos);
|
try (ObjectOutputStream oos = new ObjectOutputStream(baos)) {
|
||||||
oos.writeObject(log);
|
oos.writeObject(log);
|
||||||
oos.close();
|
}
|
||||||
final ByteArrayInputStream bais =
|
final ByteArrayInputStream bais = new ByteArrayInputStream(baos.toByteArray());
|
||||||
new ByteArrayInputStream(baos.toByteArray());
|
try (ObjectInputStream ois = new ObjectInputStream(bais)) {
|
||||||
final ObjectInputStream ois = new ObjectInputStream(bais);
|
log = (Log) ois.readObject();
|
||||||
log = (Log) ois.readObject();
|
}
|
||||||
ois.close();
|
|
||||||
|
|
||||||
// Check the characteristics of the resulting object
|
// Check the characteristics of the resulting object
|
||||||
checkStandard();
|
checkStandard();
|
||||||
|
|||||||
Reference in New Issue
Block a user