Align docstring for RepoCommand.setRecordRemoteBranch with argument

Change-Id: Ia3aa1130795d162e482b4088f190956d70857244
Signed-off-by: Stefan Beller <sbeller@google.com>
This commit is contained in:
Stefan Beller 2015-10-06 14:02:19 -07:00
parent c2efb5c964
commit cd1b00e3fc
1 changed files with 3 additions and 3 deletions

View File

@ -329,12 +329,12 @@ public RepoCommand setTargetBranch(String branch) {
* <p>
* Not implemented for non-bare repositories.
*
* @param record Whether to record the branch name
* @param enable Whether to record the branch name
* @return this command
* @since 4.2
*/
public RepoCommand setRecordRemoteBranch(boolean update) {
this.recordRemoteBranch = update;
public RepoCommand setRecordRemoteBranch(boolean enable) {
this.recordRemoteBranch = enable;
return this;
}