Implicit is generally prefered

Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
This commit is contained in:
TheKodeToad 2022-11-04 16:29:19 +00:00
parent 4a2df30f92
commit 1ea2e85415
2 changed files with 1 additions and 2 deletions

View File

@ -157,7 +157,7 @@ public final class EntryPoint {
LOGGER.log(Level.SEVERE, "Wrong argument", e); LOGGER.log(Level.SEVERE, "Wrong argument", e);
return ExitCode.ILLEGAL_ARGUMENT; return ExitCode.ILLEGAL_ARGUMENT;
} catch (ClassNotFoundException | NoSuchMethodException | IllegalAccessException e) { } catch (ReflectiveOperationException e) {
LOGGER.log(Level.SEVERE, "Caught reflection exception from launcher", e); LOGGER.log(Level.SEVERE, "Caught reflection exception from launcher", e);
return ExitCode.ERROR; return ExitCode.ERROR;

View File

@ -57,7 +57,6 @@ public final class ParseException extends IllegalArgumentException {
} }
public ParseException() { public ParseException() {
super();
} }
public static ParseException forInputString(String inputString) { public static ParseException forInputString(String inputString) {