use of org.drools.javaparser.printer.PrettyPrinterConfiguration in project drools by kiegroup.
the class JavaParserCompiler method createPrettyPrinter.
private static PrettyPrinter createPrettyPrinter() {
PrettyPrinterConfiguration config = new PrettyPrinterConfiguration();
config.setColumnAlignParameters(true);
config.setColumnAlignFirstMethodChain(true);
return new PrettyPrinter(config);
}
Aggregations