MCPcopy Create free account
hub / github.com/ReadyTalk/avian / remove

Method remove

classpath/java/util/TreeMap.java:107–110  ·  view source on GitHub ↗
(Object key)

Source from the content-addressed store, hash-verified

105 }
106
107 public V remove(Object key) {
108 MyEntry<K,V> e = set.removeAndReturn(new MyEntry(key, null));
109 return e == null ? null : e.value;
110 }
111
112 public void clear() {
113 set.clear();

Callers

nothing calls this directly

Calls 1

removeAndReturnMethod · 0.80

Tested by

no test coverage detected