Skip to content

Commit

Permalink
Quick variable type change to interface
Browse files Browse the repository at this point in the history
  • Loading branch information
nbauernfeind committed Nov 10, 2023
1 parent 4abd696 commit b7b9024
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -697,7 +697,7 @@ private void maybeCreateClassHelper(String fqClassName, String finalCode, String
final String classPathAsString = getClassPath() + File.pathSeparator + getJavaClassPath();
final List<String> compilerOptions = Arrays.asList("-d", tempDirAsString, "-cp", classPathAsString);

final StandardJavaFileManager fileManager = compiler.getStandardFileManager(null, null, null);
final JavaFileManager fileManager = compiler.getStandardFileManager(null, null, null);

boolean result = false;
boolean exceptionThrown = false;
Expand Down

0 comments on commit b7b9024

Please sign in to comment.