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

Comparing jsr166/src/main/java/util/concurrent/ConcurrentSkipListSet.java (file contents):
Revision 1.5 by jsr166, Mon May 2 08:35:49 2005 UTC vs.
Revision 1.6 by jsr166, Mon May 2 08:40:27 2005 UTC

# Line 251 | Line 251 | public class ConcurrentSkipListSet<E>
251          Collection c = (Collection) o;
252          try {
253              return containsAll(c) && c.containsAll(this);
254 <        } catch(ClassCastException unused)   {
254 >        } catch (ClassCastException unused)   {
255              return false;
256 <        } catch(NullPointerException unused) {
256 >        } catch (NullPointerException unused) {
257              return false;
258          }
259      }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines