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

Comparing jsr166/src/test/tck/ConcurrentSkipListSetTest.java (file contents):
Revision 1.40 by jsr166, Sat May 23 00:53:08 2015 UTC vs.
Revision 1.41 by jsr166, Sun May 24 01:23:17 2015 UTC

# Line 974 | Line 974 | public class ConcurrentSkipListSetTest e
974      }
975  
976      static boolean eq(Integer i, int j) {
977 <        return i == null ? j == -1 : i == j;
977 >        return (i == null) ? j == -1 : i == j;
978      }
979  
980   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines