Fix Checkstyle issue.

This commit is contained in:
Gary Gregory 2022-03-07 15:49:24 -05:00
parent fb56d81ec2
commit 0013a996d2

View File

@ -142,7 +142,7 @@ public void testSerialization() throws IOException, ClassNotFoundException, Prop
//serialize:
final ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
try (final ObjectOutputStream objectOutputStream = new ObjectOutputStream(outputStream)) {
try (ObjectOutputStream objectOutputStream = new ObjectOutputStream(outputStream)) {
objectOutputStream.writeObject(listenerSupport);
}