Skip to content

Commit

Permalink
Renamed setXXX() to withXXX() for non-top level methods
Browse files Browse the repository at this point in the history
  • Loading branch information
Dave Sescleifer authored and Dave Sescleifer committed Jun 2, 2016
1 parent faf7508 commit 1b17bc9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -730,7 +730,7 @@ public Integer getLongRunningOperationRetryTimeout() {
*
* @param longRunningOperationRetryTimeout the time in milliseconds.
*/
public void setLongRunningOperationRetryTimeout(Integer longRunningOperationRetryTimeout) {
public void withLongRunningOperationRetryTimeout(Integer longRunningOperationRetryTimeout) {
this.longRunningOperationRetryTimeout = longRunningOperationRetryTimeout;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public String location() {
*
* @param location the location value to set
*/
public void setLocation(String location) {
public void withLocation(String location) {
this.location = location;
}

Expand All @@ -103,7 +103,7 @@ public Map<String, String> getTags() {
*
* @param tags the tags value to set
*/
public void setTags(Map<String, String> tags) {
public void withTags(Map<String, String> tags) {
this.tags = tags;
}
}

0 comments on commit 1b17bc9

Please sign in to comment.