Skip to content

Commit

Permalink
fix: dangling reference
Browse files Browse the repository at this point in the history
  • Loading branch information
jpedroh committed Nov 7, 2024
1 parent 3346037 commit f875e68
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class RunNormalizationOnScenarioFilesDataCollector implements DataCollector {
scenarioFiles.parallelStream().forEach(scenarioFile -> this.filesToRunNormalization.parallelStream().forEach(fileToRunNormalization -> {
def file = scenarioFile.resolve(fileToRunNormalization)
LOG.trace("Starting normalization of ${file}")
FileFormatNormalizer.normalizeFileInPlace(file)
normalizeFileInPlace(file)
LOG.trace("Finished normalization of ${file}")
}))
LOG.trace("Finished normalization of scenario files")
Expand Down

0 comments on commit f875e68

Please sign in to comment.