(Object key)
| 714 | } |
| 715 | |
| 716 | @SuppressWarnings("unchecked") |
| 717 | @Override |
| 718 | public V remove(Object key) { |
| 719 | if (isInRange((K) key)) { |
| 720 | return backingMap.remove(key); |
| 721 | } |
| 722 | return null; |
| 723 | } |
| 724 | |
| 725 | public SortedMap<K, V> subMap(K startKey, K endKey) { |
| 726 | checkRange(startKey); |