Skip to content
Snippets Groups Projects
Commit 651c133a authored by Jürgen Walter's avatar Jürgen Walter
Browse files

fixed builder propagation

parent 74615dc5
No related branches found
No related tags found
No related merge requests found
......@@ -177,10 +177,11 @@ public class PMXCommandLine {
initFileLogging(outputDir, "extraction.log", new SimpleLayout());
initFileLogging(outputDir, "extraction.log.html", new HTMLLayout());
return new PMXController(analysisController, outputDir,
PMXController controller = new PMXController(analysisController, outputDir,
commandLine.getOptionValue(TimestampFilter.CONFIG_PROPERTY_NAME_IGNORE_BEFORE_TIMESTAMP),
commandLine.getOptionValue(TimestampFilter.CONFIG_PROPERTY_NAME_IGNORE_AFTER_TIMESTAMP),
commandLine.hasOption("reduced"));
return controller;
} catch (NullPointerException e) {
//PMXCommandLine.printUsage();
log.info(e);
......@@ -335,7 +336,6 @@ public class PMXCommandLine {
public static void setModelBuilder(IModelBuilder modelBuilder) {
PMXCommandLine.modelBuilder = modelBuilder;
PMXController.setModelBuilder(modelBuilder);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment