Skip to content

Commit

Permalink
fix: add addModules() to CompilationTask
Browse files Browse the repository at this point in the history
working on #102
  • Loading branch information
bsorrentino committed Sep 15, 2023
1 parent 01d5625 commit 6365c86
Showing 1 changed file with 4 additions and 0 deletions.
Expand Up @@ -423,6 +423,10 @@ public void setProcessors(Iterable<? extends Processor> processors) {
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() {
Expand Down

0 comments on commit 6365c86

Please sign in to comment.