[Minor] Automated Code cleanups

This commit is contained in:
Robert von Burg 2023-04-04 11:33:58 +02:00
parent 3ed799823b
commit c3e76731d9
Signed by: eitch
GPG Key ID: 75DB9C85C74331F7
1 changed files with 1 additions and 3 deletions

View File

@ -79,9 +79,7 @@ class MyModelSaxParser extends DefaultHandler implements SaxParser<MyModel> {
String value = attributes.getValue("value");
this.resource.addParameter(new MyParameter(id, name, type, value));
}
default -> {
throw new IllegalArgumentException("The element '" + qName + "' is unhandled!");
}
default -> throw new IllegalArgumentException("The element '" + qName + "' is unhandled!");
}
}
}