private SettingsBuilder()

in freemarker-generator-cli/src/main/java/org/apache/freemarker/generator/cli/config/Settings.java [267:282]


        private SettingsBuilder() {
            this.commandLineArgs = emptyList();
            this.templateDirectories = emptyList();
            this.templateEncoding = UTF_8.name();
            this.outputGeneratorDefinitions = emptyList();
            this.sharedDataSources = emptyList();
            this.sharedDataModels = emptyList();
            this.sourceIncludePattern = null;
            this.sourceExcludePattern = null;
            this.configuration = new Properties();
            this.locale = FreeMarkerConstants.DEFAULT_LOCALE.toString();
            this.parameters = new HashMap<>();
            this.systemProperties = new Properties();
            this.setInputEncoding(FreeMarkerConstants.DEFAULT_CHARSET.name());
            this.setOutputEncoding(FreeMarkerConstants.DEFAULT_CHARSET.name());
        }