(String key)
| 25 | * WARNING - Removed try catching itself - possible behaviour change. |
| 26 | */ |
| 27 | public void add(String key) { |
| 28 | Map<String, Integer> map; |
| 29 | if (key == null || key.length() <= 0) { |
| 30 | throw new IllegalArgumentException("Key \u4e0d\u80fd\u4e3a\u7a7a"); |
| 31 | } |
| 32 | Map<String, Integer> map2 = map = this.getStringMap(); |
| 33 | synchronized (map2) { |
| 34 | this.countMap.put(key, this.get(key) + 1); |
| 35 | } |
| 36 | } |
| 37 | |
| 38 | public void del(String key) { |
| 39 | if (this.countMap.get(key) != null) { |
no test coverage detected