Fix logging when a file is skipped

This commit is contained in:
Michael Pfaff 2022-09-08 22:22:16 -04:00
parent 83e0ecd95c
commit 00d87d7003
Signed by: michael
GPG Key ID: CF402C4A012AA9D4
1 changed files with 1 additions and 2 deletions

View File

@ -401,8 +401,7 @@ public class GeneratorVisitor extends ElementKindVisitor6<Void, Void> {
byte[] expected = await(newStr);
if (Arrays.equals(expected, await(actual))) {
long elapsed = System.currentTimeMillis() - startTime;
messager.printMessage(Diagnostic.Kind.NOTE, "Skipped identical '." + type + "' " + name + " at " + output + " in " + elapsed + " ms.");
printTiming(messager, "Skipped identical '." + type + "' " + name + " at " + output, startTime);
return;
}
} else {