Sonar issues fixed

Signed-off-by: Dominic Schabel <dominic.schabel@bosch-si.com>
This commit is contained in:
Dominic Schabel
2019-05-23 19:48:34 +02:00
parent e5c4b7ff2e
commit c88e7bb06e
5 changed files with 9 additions and 9 deletions

View File

@@ -35,7 +35,7 @@ public enum SortDirection {
public static SortDirection getByName(final String name) {
try {
return valueOf(name.toUpperCase());
} catch (final IllegalArgumentException ex) {// NOSONAR
} catch (final IllegalArgumentException ex) {
throw new SortParameterUnsupportedDirectionException();
}
}