Skip to content

Commit

Permalink
issue #82 - fix 'UnsupportedOperationException' on isSupportedOption …
Browse files Browse the repository at this point in the history
…invocation
  • Loading branch information
bsorrentino committed Jul 28, 2020
1 parent 2e0c812 commit 3a072bf
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -482,12 +482,12 @@ public int run(InputStream in, OutputStream out, OutputStream err, String... arg

@Override
public Set<SourceVersion> getSourceVersions() {
throw new UnsupportedOperationException("Not supported yet.");
return systemJavaCompiler.getSourceVersions();
}

@Override
public int isSupportedOption(String option) {
throw new UnsupportedOperationException("Not supported yet.");
return systemJavaCompiler.isSupportedOption(option);
}

}

0 comments on commit 3a072bf

Please sign in to comment.