(String key)
| 14 | } |
| 15 | |
| 16 | public Integer get(String key) { |
| 17 | Integer ret = this.countMap.get(key); |
| 18 | if (ret == null) { |
| 19 | return 0; |
| 20 | } |
| 21 | return ret; |
| 22 | } |
| 23 | |
| 24 | /* |
| 25 | * WARNING - Removed try catching itself - possible behaviour change. |
no outgoing calls
no test coverage detected