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

Comparing jsr166/src/test/tck/LinkedHashMapTest.java (file contents):
Revision 1.1 by jsr166, Wed Dec 12 16:59:55 2018 UTC vs.
Revision 1.2 by jsr166, Sun Sep 29 20:40:48 2019 UTC

# Line 19 | Line 19 | public class LinkedHashMapTest extends J
19          class Implementation implements MapImplementation {
20              public Class<?> klazz() { return LinkedHashMap.class; }
21              public Map emptyMap() { return new LinkedHashMap(); }
22            public Object makeKey(int i) { return i; }
23            public Object makeValue(int i) { return i; }
22              public boolean isConcurrent() { return false; }
23              public boolean permitsNullKeys() { return true; }
24              public boolean permitsNullValues() { return true; }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines