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

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

# Line 27 | Line 27 | public class ConcurrentSkipListMapTest e
27          class Implementation implements MapImplementation {
28              public Class<?> klazz() { return ConcurrentSkipListMap.class; }
29              public Map emptyMap() { return new ConcurrentSkipListMap(); }
30            public Object makeKey(int i) { return i; }
31            public Object makeValue(int i) { return i; }
30              public boolean isConcurrent() { return true; }
31 +            public boolean remappingFunctionCalledAtMostOnce() { return false; };
32              public boolean permitsNullKeys() { return false; }
33              public boolean permitsNullValues() { return false; }
34              public boolean supportsSetValue() { return false; }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines