ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/CopyOnWriteArrayList.java
(Generate patch)

Comparing jsr166/src/main/java/util/concurrent/CopyOnWriteArrayList.java (file contents):
Revision 1.101 by dl, Fri Apr 5 12:15:43 2013 UTC vs.
Revision 1.102 by jsr166, Sat Apr 6 17:21:51 2013 UTC

# Line 150 | Line 150 | public class CopyOnWriteArrayList<E>
150       * Tests for equality, coping with nulls.
151       */
152      private static boolean eq(Object o1, Object o2) {
153 <        return (o1 == null ? o2 == null : o1.equals(o2));
153 >        return (o1 == null) ? o2 == null : o1.equals(o2);
154      }
155  
156      /**

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines