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

Comparing jsr166/src/test/tck/ConcurrentHashMapTest.java (file contents):
Revision 1.59 by dl, Fri Oct 5 19:01:35 2018 UTC vs.
Revision 1.60 by jsr166, Fri Oct 5 22:12:45 2018 UTC

# Line 838 | Line 838 | public class ConcurrentHashMapTest exten
838          assertEquals(mapSize, map.size());
839      }
840  
841
842    
841      public void testReentrantComputeIfAbsent() {
842          ConcurrentHashMap<Integer, Integer> map = new ConcurrentHashMap<>(16);
843          try {
# Line 856 | Line 854 | public class ConcurrentHashMapTest exten
854          return (key % 5 == 0) ?  key :
855              map.computeIfAbsent(key + 1, k -> findValue(map, k));
856      }
857 <    
857 >
858   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines