[Minor] code cleanup

This commit is contained in:
Robert von Burg 2023-04-17 08:36:46 +02:00
parent b8a94478e6
commit b1de2f7089
Signed by: eitch
GPG Key ID: 75DB9C85C74331F7
1 changed files with 3 additions and 0 deletions

View File

@ -235,6 +235,9 @@ public class ConfigurationSaxParser extends DefaultHandler {
public void startElement(String uri, String localName, String qName, Attributes attributes) {
switch (qName) {
case NAME, API, IMPL, DEPENDS -> this.valueBuffer = new StringBuilder();
default -> {
// no nothing for others, as only these are text elements
}
}
}