MCPcopy Create free account
hub / github.com/gomatcha/matcha / get

Method get

cmd/Tracker.java:35–45  ·  view source on GitHub ↗
(long v)

Source from the content-addressed store, hash-verified

33 }
34 }
35 public synchronized Object get(long v) {
36 if (v == 0) {
37 return null;
38 }
39
40 Object a = this.mapTable.get(v);
41 if (a == null) {
42 throw new IllegalArgumentException("Tracker doesn't contain key");
43 }
44 return a;
45 }
46 public synchronized long foreignBridge(String key) {
47 Bridge bridge = Bridge.singleton();
48 return track(bridge.get(key));

Callers 10

foreignCallMethod · 0.95
foreignToBoolMethod · 0.95
foreignToInt64Method · 0.95
foreignToFloat64Method · 0.95
foreignToGoRefMethod · 0.95
foreignToStringMethod · 0.95
foreignToBytesMethod · 0.95
foreignArraySetMethod · 0.95
foreignArrayAtMethod · 0.95
foreignArrayLenMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected