Skip to content

Commit

Permalink
Delete trailing space in the cluster regex
Browse files Browse the repository at this point in the history
  • Loading branch information
Mathieu Bague committed Dec 13, 2016
1 parent c21be99 commit 76db173
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 class WCAImpl implements WCA, WCAConstants, AmplConstants {
private static final int DETAILS_LEVEL_NORMAL = 2;
private static final int DETAILS_LEVEL_DEBUG = 4;

private static final Pattern CLUSTER_INDEX_PATTERN = Pattern.compile(" WCA Result : contingency_index (\\d*) contingency_cluster_index (\\d*) curative_action_index (\\d*) ");
private static final Pattern CLUSTER_INDEX_PATTERN = Pattern.compile(" WCA Result : contingency_index (\\d*) contingency_cluster_index (\\d*) curative_action_index (\\d*)");
private static final Pattern DOMAINS_RESULTS_PATTERN = Pattern.compile(" WCA Result : basic_violation (\\d*) rule_violation (\\d*)");

private final Network network;
Expand Down

0 comments on commit 76db173

Please sign in to comment.