Checks whether a section with a particular name exists in this instance. @param name the name of the section @return true if the section exists
(String name)
| 324 | * @return true if the section exists |
| 325 | */ |
| 326 | public boolean hasSection(String name) { |
| 327 | return this.sections.containsKey(normSection(name)); |
| 328 | } |
| 329 | |
| 330 | /** |
| 331 | * Adds a section if it doesn't exist yet. |
no test coverage detected