ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/tck/TreeMapTest.java
(Generate patch)

Comparing jsr166/src/test/tck/TreeMapTest.java (file contents):
Revision 1.34 by jsr166, Wed Aug 23 05:33:00 2017 UTC vs.
Revision 1.35 by jsr166, Sun Sep 29 20:40:48 2019 UTC

# Line 26 | Line 26 | public class TreeMapTest extends JSR166T
26          class Implementation implements MapImplementation {
27              public Class<?> klazz() { return TreeMap.class; }
28              public Map emptyMap() { return new TreeMap(); }
29            public Object makeKey(int i) { return i; }
30            public Object makeValue(int i) { return i; }
29              public boolean isConcurrent() { return false; }
30              public boolean permitsNullKeys() { return false; }
31              public boolean permitsNullValues() { return true; }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines