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

Comparing jsr166/src/main/java/util/concurrent/ConcurrentSkipListMap.java (file contents):
Revision 1.80 by jsr166, Mon Dec 12 20:53:11 2011 UTC vs.
Revision 1.81 by jsr166, Mon Dec 19 19:18:35 2011 UTC

# Line 2311 | Line 2311 | public class ConcurrentSkipListMap<K,V>
2311              Collection<?> c = (Collection<?>) o;
2312              try {
2313                  return containsAll(c) && c.containsAll(this);
2314 <            } catch (ClassCastException unused)   {
2314 >            } catch (ClassCastException unused) {
2315                  return false;
2316              } catch (NullPointerException unused) {
2317                  return false;
# Line 2420 | Line 2420 | public class ConcurrentSkipListMap<K,V>
2420              Collection<?> c = (Collection<?>) o;
2421              try {
2422                  return containsAll(c) && c.containsAll(this);
2423 <            } catch (ClassCastException unused)   {
2423 >            } catch (ClassCastException unused) {
2424                  return false;
2425              } catch (NullPointerException unused) {
2426                  return false;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines