Skip to content

Commit

Permalink
Disable annotation processing in the runtime compiler (#518)
Browse files Browse the repository at this point in the history
  • Loading branch information
nisargthakkar authored Sep 20, 2023
1 parent 3d8a30b commit 917b1b9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ protected Class compileClass(final String className, Set<String> knownUsedFullyQ
*/
LOGGER.info("Starting compilation for the generated source file: {} ", filePath);
LOGGER.debug("The inferred compile class path for file: {} : {}", filePath, compileClassPathForCurrentFile);
compileResult = compiler.run(null, null, null, "-cp", compileClassPathForCurrentFile, filePath, "-XDuseUnsharedTable");
compileResult = compiler.run(null, null, null, "-cp", compileClassPathForCurrentFile, "-XDuseUnsharedTable", "-proc:none", filePath);
} catch (Exception e) {
throw new FastSerdeGeneratorException("Unable to compile:" + className + " from source file: " + filePath, e);
}
Expand Down

0 comments on commit 917b1b9

Please sign in to comment.