Compare commits

...

2 Commits

Author SHA1 Message Date
Michael Pfaff 00d87d7003
Fix logging when a file is skipped 2022-09-08 22:22:16 -04:00
Michael Pfaff 83e0ecd95c
Remove unnecessary generator args 2022-09-08 22:20:31 -04:00
2 changed files with 1 additions and 4 deletions

View File

@ -138,7 +138,6 @@
<compilerarg value="-s"/>
<compilerarg path="${lwjgl.target.gen.java}"/>
<compilerarg value="-AgenJavaPath=${lwjgl.target.gen.java}"/>
<compilerarg value="-AgenNativePath=${lwjgl.target.gen.native}/opengl"/>
<src>
<fileset dir="${lwjgl.src.templates.gl}">
<include name="${opengl-template-pattern}"/>
@ -306,7 +305,6 @@
<compilerarg value="-s"/>
<compilerarg path="${lwjgl.target.gen.java}"/>
<compilerarg value="-AgenJavaPath=${lwjgl.target.gen.java}"/>
<compilerarg value="-AgenNativePath=${lwjgl.target.gen.native}/opencl"/>
<compilerarg value="${javac.args.debug}"/>
<compilerarg value="-Acontextspecific"/>
<src>

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 {