Skip to content

Commit

Permalink
fix checkstyle error
Browse files Browse the repository at this point in the history
  • Loading branch information
cashlalala committed Feb 11, 2019
1 parent a84d5ad commit 37fc8b3
Showing 1 changed file with 20 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,27 +80,46 @@ public PluginPatchsetCreatedEvent(boolean excludeDrafts,
this.excludeWipState = excludeWipState;
}


/**
* Setter for excludeDrafts.
* @param excludeDrafts if drafts should be excluded or not.
*/
@DataBoundSetter
public void setExcludeDrafts(boolean excludeDrafts) {
this.excludeDrafts = excludeDrafts;
}

/**
* Setter for excludeTrivialRebase.
* @param excludeTrivialRebase if trivial rebases should be excluded or not.
*/
@DataBoundSetter
public void setExcludeTrivialRebase(boolean excludeTrivialRebase) {
this.excludeTrivialRebase = excludeTrivialRebase;
}

/**
* Setter for excludeNoCodeChange.
* @param excludeNoCodeChange if message-only changes should be excluded.
*/
@DataBoundSetter
public void setExcludeNoCodeChange(boolean excludeNoCodeChange) {
this.excludeNoCodeChange = excludeNoCodeChange;
}

/**
* Setter for excludePrivateState.
* @param excludePrivateState if private state changes should be excluded.
*/
@DataBoundSetter
public void setExcludePrivateState(boolean excludePrivateState) {
this.excludePrivateState = excludePrivateState;
}

/**
* Setter for excludeWipState.
* @param excludeWipState if wip state changes should be excluded.
*/
@DataBoundSetter
public void setExcludeWipState(boolean excludeWipState) {
this.excludeWipState = excludeWipState;
Expand Down

0 comments on commit 37fc8b3

Please sign in to comment.