--- jsr166/src/jsr166x/ConcurrentSkipListMap.java 2011/10/25 18:46:37 1.15 +++ jsr166/src/jsr166x/ConcurrentSkipListMap.java 2011/12/05 04:48:16 1.16 @@ -2305,7 +2305,7 @@ public class ConcurrentSkipListMap * Comparable). * @throws NullPointerException if fromKey is null. */ - public ConcurrentNavigableMap tailMap(K fromKey) { + public ConcurrentNavigableMap tailMap(K fromKey) { if (fromKey == null) throw new NullPointerException(); return new ConcurrentSkipListSubMap(this, fromKey, null); @@ -3241,7 +3241,7 @@ public class ConcurrentSkipListMap return new ConcurrentSkipListSubMap(m, least, toKey); } - public ConcurrentNavigableMap tailMap(K fromKey) { + public ConcurrentNavigableMap tailMap(K fromKey) { if (fromKey == null) throw new NullPointerException(); if (!inOpenRange(fromKey))