Skip to content

Commit

Permalink
[HWKALERTS-2] use trigger mode name as opposed to ordinal in Conditio…
Browse files Browse the repository at this point in the history
…n id.
  • Loading branch information
jshaughn committed Feb 23, 2015
1 parent 0494d8d commit 88b7143
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public String getConditionId() {

private void updateId() {
StringBuilder sb = new StringBuilder(triggerId);
sb.append("-").append(triggerMode.ordinal());
sb.append("-").append(triggerMode.name());
sb.append("-").append(conditionSetSize);
sb.append("-").append(conditionSetIndex);
this.conditionId = sb.toString();
Expand Down

0 comments on commit 88b7143

Please sign in to comment.