(long v)
| 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)); |
no outgoing calls
no test coverage detected