Skip to content

Commit

Permalink
Make all ModCluster.Builder methods proper build methods.
Browse files Browse the repository at this point in the history
  • Loading branch information
rhusar authored and stuartwdouglas committed Dec 14, 2016
1 parent 03e952c commit 885b923
Showing 1 changed file with 2 additions and 5 deletions.
Expand Up @@ -264,12 +264,9 @@ public Builder setUseAlias(boolean useAlias) {
return this;
}

public void setMaxRetries(int maxRetries) {
public Builder setMaxRetries(int maxRetries) {
this.maxRetries = maxRetries;
}

public long getTtl() {
return ttl;
return this;
}

public Builder setTtl(long ttl) {
Expand Down

0 comments on commit 885b923

Please sign in to comment.