Removed a Logger

This commit is contained in:
Speiger 2020-12-01 23:55:10 +01:00
parent 8d079ae0ab
commit 5d5c0506e3
1 changed files with 0 additions and 2 deletions

View File

@ -21,13 +21,11 @@ public abstract class TemplateProcessor
Path dataFolder;
boolean init = false;
public TemplateProcessor(Path sourceFolder, Path outputFolder, Path dataFolder)
{
this.sourceFolder = sourceFolder;
this.outputFolder = outputFolder;
this.dataFolder = dataFolder;
System.out.println(outputFolder.toAbsolutePath().toString());
}
protected abstract void init();