Returns a section by name or null if not found. @param name the section's name @return the section
(String name)
| 557 | * @return the section |
| 558 | */ |
| 559 | private Section getSection(String name) { |
| 560 | return sections.get(normSection(name)); |
| 561 | } |
| 562 | |
| 563 | /** |
| 564 | * Normalizes an arbitrary string for use as a section name. Currently |
no test coverage detected