Skip to content

Commit

Permalink
remove inlineJsrBytecode following upstream removal in jdt
Browse files Browse the repository at this point in the history
  • Loading branch information
cdietrich committed Sep 8, 2024
1 parent 45d8078 commit 03c316b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,6 @@ protected CompilerOptions getCompilerOptions(JavaConfig javaConfig) {
long targetLevel = toJdtVersion(targetVersion);
CompilerOptions compilerOptions = new CompilerOptions();
compilerOptions.targetJDK = targetLevel;
compilerOptions.inlineJsrBytecode = true;
compilerOptions.sourceLevel = sourceLevel;
compilerOptions.produceMethodParameters = true;
compilerOptions.produceReferenceInfo = true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,6 @@ public InMemoryJavaCompiler(ClassLoader parent, JavaVersion javaVersion) {
this.parentClassLoader = parent;
this.compilerOptions = new CompilerOptions();
this.setJavaVersion(javaVersion);
this.compilerOptions.inlineJsrBytecode = true;
this.compilerOptions.preserveAllLocalVariables = true;
}

Expand Down

0 comments on commit 03c316b

Please sign in to comment.