Skip to content

Commit

Permalink
KristianRosenvold: Fixed obviously incorrect static list
Browse files Browse the repository at this point in the history
r15901
  • Loading branch information
krosenvold committed Feb 17, 2012
1 parent c5da9ca commit 93b5b17
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class DefaultCapabilityMatcher implements CapabilityMatcher {
private static final String GRID_TOKEN = "_";

// temporary fix to only check to most meaningful desiredCapability params
private static List<String> toConsider = new ArrayList<String>();
private final List<String> toConsider = new ArrayList<String>();

public DefaultCapabilityMatcher() {
toConsider.add(CapabilityType.PLATFORM);
Expand Down

0 comments on commit 93b5b17

Please sign in to comment.