Skip to content

Commit

Permalink
Merge pull request EsotericSoftware#257 from simonbrandhof/master
Browse files Browse the repository at this point in the history
Fix end-of-line character in ReferenceTest
  • Loading branch information
magro committed Oct 24, 2014
2 parents 816ca33 + 411a1fe commit 000d88d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/com/esotericsoftware/kryo/ReferenceTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ public void testReadingNestedObjectsFirst () {
// This is JDK > = 1.7
kryo.register(subList.getClass(), new ArraySubListSerializer());
} else {
kryo.register(subList.getClass(), new SubListSerializer());
kryo.register(subList.getClass(), new SubListSerializer());

}
roundTrip(26, 26, subList);
}
Expand Down

0 comments on commit 000d88d

Please sign in to comment.