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.12 by jsr166, Tue Mar 15 19:47:02 2011 UTC vs.
Revision 1.14 by jsr166, Sun Oct 21 06:14:11 2012 UTC

# 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 471 | Line 471 | public class ConcurrentSkipListSet<E>
471       * in {@link IllegalArgumentException}.  Instances of this class are
472       * constructed only using the <tt>subSet</tt>, <tt>headSet</tt>, and
473       * <tt>tailSet</tt> methods of their underlying sets.
474     *
474       */
475      static class ConcurrentSkipListSubSet<E>
476          extends AbstractSet<E>

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines