Skip to content

Commit c094176

Browse files
committed
fix: remove duplicate values
1 parent b051555 commit c094176

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal-api/src/main/java/datadog/trace/bootstrap/config/provider/StableConfigParser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ static boolean selectorMatch(String origin, List<String> matches, String operato
161161
key);
162162
return false;
163163
}
164-
String value = System.getProperty(key.substring(2));
164+
value = System.getProperty(key.substring(2));
165165
return matchOperator(value, operator, matches);
166166
case "tags":
167167
// TODO: Support this down the line (Must define the source of "tags" first)

0 commit comments

Comments
 (0)