(String path)
| 197 | } |
| 198 | |
| 199 | public Object get(String path) { |
| 200 | if (path == null) { |
| 201 | throw new IllegalArgumentException("Path cannot be null"); |
| 202 | } |
| 203 | |
| 204 | return get(path, getDefault(path)); |
| 205 | } |
| 206 | |
| 207 | public Object get(String path, Object def) { |
| 208 | if (path == null) { |
no test coverage detected