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

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

# Line 19 | Line 19 | public class HashMapTest extends JSR166T
19          class Implementation implements MapImplementation {
20              public Class<?> klazz() { return HashMap.class; }
21              public Map emptyMap() { return new HashMap(); }
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