(String key)
| 85 | } |
| 86 | |
| 87 | public double getDouble(String key) { |
| 88 | return (double) this.getValueByKey(key); |
| 89 | } |
| 90 | |
| 91 | public List<String> getStringList(String key) { |
| 92 | return (List<String>) this.getValueByKey(key); |
nothing calls this directly
no test coverage detected