summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Pursehouse <dpursehouse@collab.net>2018-04-06 08:02:33 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2018-04-06 08:02:33 +0000
commit5a2c1347bfd87bf0f93f412560e71cdb986f5feb (patch)
treed151341aa8b9aa8b64d01f8ed45417857c40d61e
parentdb05152cb50159b7126b8635302b6c6feff723a8 (diff)
parent41af3c57c73aea0f1583ee4455f5b28d11dc24c9 (diff)
Merge "ReviewInput: Remove unused strictLabels attribute" into stable-2.15
-rw-r--r--gerrit-extension-api/src/main/java/com/google/gerrit/extensions/api/changes/ReviewInput.java11
1 files changed, 0 insertions, 11 deletions
diff --git a/gerrit-extension-api/src/main/java/com/google/gerrit/extensions/api/changes/ReviewInput.java b/gerrit-extension-api/src/main/java/com/google/gerrit/extensions/api/changes/ReviewInput.java
index 2c945be86e..69acf75de3 100644
--- a/gerrit-extension-api/src/main/java/com/google/gerrit/extensions/api/changes/ReviewInput.java
+++ b/gerrit-extension-api/src/main/java/com/google/gerrit/extensions/api/changes/ReviewInput.java
@@ -36,15 +36,6 @@ public class ReviewInput {
public Map<String, List<RobotCommentInput>> robotComments;
/**
- * If true require all labels to be within the user's permitted ranges based on access controls,
- * attempting to use a label not granted to the user will fail the entire modify operation early.
- * If false the operation will execute anyway, but the proposed labels given by the user will be
- * modified to be the "best" value allowed by the access controls, or ignored if the label does
- * not exist.
- */
- public boolean strictLabels = true;
-
- /**
* How to process draft comments already in the database that were not also described in this
* input request.
*
@@ -66,8 +57,6 @@ public class ReviewInput {
* on behalf of this named user instead of the caller. Caller must have the labelAs-$NAME
* permission granted for each label that appears in {@link #labels}. This is in addition to the
* named user also needing to have permission to use the labels.
- *
- * <p>{@link #strictLabels} impacts how labels is processed for the named user, not the caller.
*/
public String onBehalfOf;