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.8 by jsr166, Tue Nov 24 03:57:04 2009 UTC vs.
Revision 1.9 by jsr166, Wed Sep 1 20:12:39 2010 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) {
258 >        } catch (NullPointerException unused) {
259              return false;
260          }
261      }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines