14-FixDeclarationRedundancyIssues

This commit is contained in:
Adrian-Devries 2025-04-24 12:54:04 +02:00
parent 7a81f0c042
commit 46fdd703c3
43 changed files with 90 additions and 50 deletions

View file

@ -35,8 +35,7 @@ import java.util.concurrent.Callable;
*
* @author Andreas Penski
*/
@Command(description = "Structural and semantic validation of xml files", name = "KoSIT Validator", mixinStandardHelpOptions = false,
separator = " ")
@Command(description = "Structural and semantic validation of xml files", name = "KoSIT Validator", separator = " ")
@Getter
public class CommandLineOptions implements Callable<ReturnValue> {
@ -166,7 +165,7 @@ public class CommandLineOptions implements Callable<ReturnValue> {
private List<ScenarioDefinition> scenarios;
@Override
public ReturnValue call() throws Exception {
public ReturnValue call() {
configureLogging(this);
return Validator.mainProgram(this);
}