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

Comparing jsr166/src/jsr166x/ConcurrentSkipListMap.java (file contents):
Revision 1.9 by jsr166, Tue Nov 24 03:57:04 2009 UTC vs.
Revision 1.11 by jsr166, Sat Nov 13 05:59:24 2010 UTC

# Line 2064 | Line 2064 | public class ConcurrentSkipListMap<K,V>
2064          try {
2065              return (containsAllMappings(this, t) &&
2066                      containsAllMappings(t, this));
2067 <        } catch(ClassCastException unused) {
2067 >        } catch (ClassCastException unused) {
2068              return false;
2069 <        } catch(NullPointerException unused) {
2069 >        } catch (NullPointerException unused) {
2070              return false;
2071          }
2072      }
# Line 3050 | Line 3050 | public class ConcurrentSkipListMap<K,V>
3050           * Creates a new submap.
3051           * @param least inclusive least value, or <tt>null</tt> if from start
3052           * @param fence exclusive upper bound or <tt>null</tt> if to end
3053 <         * @throws IllegalArgumentException if least and fence nonnull
3053 >         * @throws IllegalArgumentException if least and fence non-null
3054           *  and least greater than fence
3055           */
3056          ConcurrentSkipListSubMap(ConcurrentSkipListMap<K,V> map,

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines