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.16 by jsr166, Tue Dec 1 09:48:13 2009 UTC vs.
Revision 1.19 by jsr166, Wed Sep 1 20:12:39 2010 UTC

# Line 11 | Line 11 | import java.io.*;
11  
12   public class ConcurrentSkipListMapTest extends JSR166TestCase {
13      public static void main(String[] args) {
14 <        junit.textui.TestRunner.run (suite());
14 >        junit.textui.TestRunner.run(suite());
15      }
16      public static Test suite() {
17          return new TestSuite(ConcurrentSkipListMapTest.class);
# Line 503 | Line 503 | public class ConcurrentSkipListMapTest e
503  
504      /**
505       * lowerEntry, higherEntry, ceilingEntry, and floorEntry return
506 <     * imutable entries
506 >     * immutable entries
507       */
508      public void testEntryImmutablity() {
509          ConcurrentSkipListMap map = map5();
# Line 1192 | Line 1192 | public class ConcurrentSkipListMapTest e
1192                  // BitSet should support this! Test would run much faster
1193                  while (key >= min) {
1194                      if (bs.get(key))
1195 <                        return(key);
1195 >                        return key;
1196                      key--;
1197                  }
1198                  return -1;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines