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

Comparing jsr166/src/jsr166x/ConcurrentSkipListSet.java (file contents):
Revision 1.10 by jsr166, Sat Nov 13 05:59:25 2010 UTC vs.
Revision 1.11 by jsr166, Mon Nov 29 20:58:06 2010 UTC

# Line 541 | Line 541 | public class ConcurrentSkipListSet<E>
541          }
542          public E pollFirst() {
543              Map.Entry<E,?> e = s.pollFirstEntry();
544 <            return (e == null)? null : e.getKey();
544 >            return (e == null) ? null : e.getKey();
545          }
546          public E pollLast() {
547              Map.Entry<E,?> e = s.pollLastEntry();
548 <            return (e == null)? null : e.getKey();
548 >            return (e == null) ? null : e.getKey();
549          }
550  
551      }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines