c3r-cli-spark/src/main/java/com/amazonaws/c3r/spark/cli/SchemaMode.java [233:240]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private void validate() {
        if (requiredArgs.getInput().isBlank()) {
            throw new C3rIllegalArgumentException("Specified input file name is blank.");
        }
        if (optionalArgs.output != null && optionalArgs.output.isBlank()) {
            throw new C3rIllegalArgumentException("Specified output file name is blank.");
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



c3r-cli/src/main/java/com/amazonaws/c3r/cli/SchemaMode.java [225:232]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private void validate() {
        if (requiredArgs.getInput().isBlank()) {
            throw new C3rIllegalArgumentException("Specified input file name is blank.");
        }
        if (optionalArgs.output != null && optionalArgs.output.isBlank()) {
            throw new C3rIllegalArgumentException("Specified output file name is blank.");
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



