|
|
@@ -55,7 +55,6 @@ public abstract class ASortedMap<K, V> extends AMap<K, V> implements SortedMap<K
|
|
|
* given key, if it present; otherwise, it will be either the smallest
|
|
|
* greater key or the greatest smaller key.
|
|
|
*/
|
|
|
- protected abstract Entry<K, V> locateEntry(K key);
|
|
|
|
|
|
protected abstract Entry<K, V> firstEntry();
|
|
|
|
|
|
@@ -424,9 +423,6 @@ public abstract class ASortedMap<K, V> extends AMap<K, V> implements SortedMap<K
|
|
|
@Override
|
|
|
protected abstract Entry<K, V> findEntry(K key);
|
|
|
|
|
|
- @Override
|
|
|
- protected abstract Entry<K, V> locateEntry(K key);
|
|
|
-
|
|
|
@Override
|
|
|
protected abstract Entry<K, V> firstEntry();
|
|
|
|