Skip to content

Commit

Permalink
override method addModules in javax.tools.JavaCompiler.CompilationTask
Browse files Browse the repository at this point in the history
  • Loading branch information
bsorrentino committed Apr 12, 2019
1 parent 8065847 commit b7434e5
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ public static JavaCompiler createInProcess() {
return ToolProvider.getSystemJavaCompiler();
}

private static void printCommand( final org.codehaus.plexus.compiler.Compiler javac,
static void printCommand( final org.codehaus.plexus.compiler.Compiler javac,
final CompilerConfiguration javacConf,
final java.io.PrintWriter out ) throws CompilerException
{
Expand Down Expand Up @@ -412,6 +412,11 @@ public void setLocale(Locale locale) {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}

@Override
public void addModules(Iterable<String> moduleNames) {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}

@Override
public Boolean call() {
try {
Expand Down Expand Up @@ -457,6 +462,7 @@ public String toString() {
});
return false;
}

}
};
}
Expand Down

0 comments on commit b7434e5

Please sign in to comment.