Skip to content

Commit d7cb21f

Browse files
committed
Improved analysis tool
1 parent 6257703 commit d7cb21f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/org/fastfilter/analysis/AnalyzeResults.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public static void main(String... args) throws IOException {
9494
if (args.length > 0) {
9595
resultFileName = args[0];
9696
}
97-
if (new File(resultFileName).exists()) {
97+
if (!new File(resultFileName).exists()) {
9898
throw new FileNotFoundException(resultFileName);
9999
}
100100
new AnalyzeResults().processFile(resultFileName);

0 commit comments

Comments
 (0)