(Object v)
| 17 | return instance; |
| 18 | } |
| 19 | public synchronized long track(Object v) { |
| 20 | if (v == null) { |
| 21 | return 0; |
| 22 | } |
| 23 | this.maxKey += 1; |
| 24 | this.mapTable.put(this.maxKey, v); |
| 25 | return this.maxKey; |
| 26 | } |
| 27 | public synchronized void untrack(long v) { |
| 28 | if (v == 0) { |
| 29 | return; |
no test coverage detected