Skip to content

Commit

Permalink
lint code
Browse files Browse the repository at this point in the history
  • Loading branch information
chaokunyang committed Jul 15, 2023
1 parent 9a020e3 commit ef3e5c8
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,8 @@ public void testJavaSerialization() {
.disableSecureMode()
.build();
MemoryBuffer buffer = MemoryUtils.buffer(32);
JDKCompatibleCollectionSerializer javaSerializer = new JDKCompatibleCollectionSerializer(fury, setClass);
JDKCompatibleCollectionSerializer javaSerializer =
new JDKCompatibleCollectionSerializer(fury, setClass);
javaSerializer.write(buffer, set);
Object read = javaSerializer.read(buffer);
assertEquals(set, read);
Expand Down

0 comments on commit ef3e5c8

Please sign in to comment.