(String sectionName, String key)
| 231 | } |
| 232 | |
| 233 | @Override |
| 234 | public String getValue(String sectionName, String key) { |
| 235 | Section section = this.getConfig().getSection(sectionName); |
| 236 | return section == null ? null : section.get(key); |
| 237 | } |
| 238 | |
| 239 | @Override |
| 240 | public Map<String, Section> getSections() { |
nothing calls this directly
no test coverage detected