Skip to content

Commit

Permalink
Dropped eclipse parts from config file support #376
Browse files Browse the repository at this point in the history
  • Loading branch information
de-jcup committed Oct 29, 2021
1 parent 748fee4 commit a6fe18b
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@

import de.jcup.asciidoctoreditor.LogHandler;
import de.jcup.asciidoctoreditor.PrintStreamLogHandler;
import de.jcup.asciidoctoreditor.util.AsciiDoctorEditorUtil;

public class AsciiDocConfigFileSupport {

Expand Down Expand Up @@ -135,15 +134,15 @@ private List<AsciidoctorConfigFile> handleAutoCreateOfMissingConfig() {
autoCreateCallback.run();
}
} catch (IOException e) {
AsciiDoctorEditorUtil.logError("Was not able to auto create config file at target path:" + targetPath, e);
logHandler.logError("Was not able to auto create config file at target path:" + targetPath, e);
return createNotFoundResult();
}
}

try {
return Arrays.asList(createAsciidocConfigFile(targetPath));
} catch (IOException e) {
AsciiDoctorEditorUtil.logError("Was not able to read config file from target path:" + targetPath, e);
logHandler.logError("Was not able to read config file from target path:" + targetPath, e);
return createNotFoundResult();
}
}
Expand Down

0 comments on commit a6fe18b

Please sign in to comment.