Skip to content

Commit

Permalink
Fix erroneous docstrings for abstract bulk by scroll request (#37517)
Browse files Browse the repository at this point in the history
  • Loading branch information
torgeir authored and Christoph Büscher committed Jan 17, 2019
1 parent 50f4f26 commit 5525a6f
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 @@ -185,14 +185,14 @@ public Self setSize(int size) {
}

/**
* Should version conflicts cause aborts? Defaults to false.
* Whether or not version conflicts cause the action to abort.
*/
public boolean isAbortOnVersionConflict() {
return abortOnVersionConflict;
}

/**
* Should version conflicts cause aborts? Defaults to false.
* Set whether or not version conflicts cause the action to abort.
*/
public Self setAbortOnVersionConflict(boolean abortOnVersionConflict) {
this.abortOnVersionConflict = abortOnVersionConflict;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public Self size(int size) {
}

/**
* Should we version conflicts cause the action to abort?
* Set whether or not version conflicts cause the action to abort.
*/
public Self abortOnVersionConflict(boolean abortOnVersionConflict) {
request.setAbortOnVersionConflict(abortOnVersionConflict);
Expand Down

0 comments on commit 5525a6f

Please sign in to comment.