Skip to content

Commit

Permalink
Change NoPol to call the right constructor for NopolResult
Browse files Browse the repository at this point in the history
  • Loading branch information
surli authored and monperrus committed Oct 10, 2017
1 parent c8643a6 commit 419ade5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nopol/src/main/java/fr/inria/lille/repair/nopol/NoPol.java
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public NoPol(NopolContext nopolContext) {
this.nopolContext = nopolContext;
this.classpath = nopolContext.getProjectClasspath();
this.sourceFiles = nopolContext.getProjectSources();
this.nopolResult = new NopolResult(nopolContext);
this.nopolResult = new NopolResult(nopolContext, this.startTime);

StatementType type = nopolContext.getType();
logger.info("Source files: " + Arrays.toString(sourceFiles));
Expand Down

0 comments on commit 419ade5

Please sign in to comment.