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.9 by jsr166, Wed Sep 1 20:12:39 2010 UTC vs.
Revision 1.13 by jsr166, Mon Dec 19 19:18:36 2011 UTC

# Line 1 | Line 1
1   /*
2   * Written by Doug Lea with assistance from members of JCP JSR-166
3   * Expert Group and released to the public domain, as explained at
4 < * http://creativecommons.org/licenses/publicdomain
4 > * http://creativecommons.org/publicdomain/zero/1.0/
5   */
6  
7   package jsr166x;
# Line 253 | Line 253 | public class ConcurrentSkipListSet<E>
253          Collection c = (Collection) o;
254          try {
255              return containsAll(c) && c.containsAll(this);
256 <        } catch (ClassCastException unused)   {
256 >        } catch (ClassCastException unused) {
257              return false;
258          } catch (NullPointerException unused) {
259              return false;
# Line 487 | Line 487 | public class ConcurrentSkipListSet<E>
487           * @param fromElement inclusive least value, or <tt>null</tt> if from start
488           * @param toElement exclusive upper bound or <tt>null</tt> if to end
489           * @throws IllegalArgumentException if fromElement and toElement
490 <         * nonnull and fromElement greater than toElement
490 >         * non-null and fromElement greater than toElement
491           */
492          ConcurrentSkipListSubSet(ConcurrentSkipListMap<E,Object> map,
493                                   E fromElement, E toElement) {
# 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