(String key)
| 16 | } |
| 17 | |
| 18 | public Integer get(String key) { |
| 19 | Integer ret = this.countMap.get(key); |
| 20 | if (ret == null) { |
| 21 | return 0; |
| 22 | } else { |
| 23 | return ret; |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | public void add(String key) { |
| 28 | if (key == null || key.length() <= 0) { |
no outgoing calls
no test coverage detected