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

Comparing jsr166/src/test/tck/ConcurrentSkipListSubMapTest.java (file contents):
Revision 1.1 by dl, Tue Dec 28 16:15:59 2004 UTC vs.
Revision 1.2 by dl, Tue Mar 22 01:30:22 2005 UTC

# Line 32 | Line 32 | public class ConcurrentSkipListSubMapTes
32          map.put(seven, "F");
33          assertFalse(map.isEmpty());
34          assertEquals(7, map.size());
35 <        return map.subMap(one, seven);
35 >        return map.navigableSubMap(one, seven);
36      }
37  
38      private static ConcurrentNavigableMap map0() {  
39          ConcurrentSkipListMap map = new ConcurrentSkipListMap();
40          assertTrue(map.isEmpty());
41 <        return map.tailMap(one);
41 >        return map.navigableTailMap(one);
42      }
43  
44      /**

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines