Skip to content
This repository has been archived by the owner on Apr 13, 2023. It is now read-only.

Commit

Permalink
Make the TypeCheckerBuilder.setRepositoryManager() chainable like t…
Browse files Browse the repository at this point in the history
…he rest
  • Loading branch information
quintesse committed Apr 28, 2015
1 parent 6ea97f1 commit 07364c3
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,9 @@ public TypeCheckerBuilder addSrcDirectory(VirtualFile srcDirectory) {
return this;
}

public void setRepositoryManager(RepositoryManager repositoryManager) {
public TypeCheckerBuilder setRepositoryManager(RepositoryManager repositoryManager) {
this.repositoryManager = repositoryManager;
return this;
}

public TypeCheckerBuilder setModuleFilters(List<String> moduleFilters){
Expand Down

0 comments on commit 07364c3

Please sign in to comment.