(Object object)
| 886 | } |
| 887 | |
| 888 | @Override |
| 889 | public boolean remove(Object object) { |
| 890 | if (subMap.containsKey(object)) { |
| 891 | subMap.remove(object); |
| 892 | return true; |
| 893 | } |
| 894 | return false; |
| 895 | } |
| 896 | |
| 897 | public Iterator<K> iterator() { |
| 898 | Node<K, V> from; |
nothing calls this directly
no test coverage detected