commit | 88a87b1c95f86522b4aa74c0b7df120b50a02e5d | [log] [tgz] |
---|---|---|
author | Chad Horohoe <chorohoe@wikimedia.org> | Thu Apr 04 16:42:54 2013 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Thu Apr 04 16:42:54 2013 +0000 |
tree | 77c0b5dce7e6a25aaff94dbc48e03b10733ba37e | |
parent | aa1a448231ba4f6409494243556f3ea027643ecb [diff] | |
parent | f6140134242eb0733843594361c77ad245e393b0 [diff] |
Merge "Use lower case condition keys"
diff --git a/hooks-its/src/main/java/com/googlesource/gerrit/plugins/hooks/workflow/GerritHookFilterChangeState.java b/hooks-its/src/main/java/com/googlesource/gerrit/plugins/hooks/workflow/GerritHookFilterChangeState.java index 7b2e7bd..e621f6f 100644 --- a/hooks-its/src/main/java/com/googlesource/gerrit/plugins/hooks/workflow/GerritHookFilterChangeState.java +++ b/hooks-its/src/main/java/com/googlesource/gerrit/plugins/hooks/workflow/GerritHookFilterChangeState.java
@@ -189,7 +189,7 @@ public Condition(String key, String[] values) { super(); - this.key = key; + this.key = key.toLowerCase(); this.val = values; }