Skip to content

Commit c9ec506

Browse files
committed
fixing build
1 parent 785dca5 commit c9ec506

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

client/src/main/java/io/split/engine/matchers/RuleBasedSegmentMatcher.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ public boolean match(Object matchValue, String bucketingKey, Map<String, Object>
4545
return matchConditions(parsedRuleBasedSegment.parsedConditions(), matchValue, bucketingKey, attributes, evaluationContext);
4646
}
4747

48-
private boolean matchExcludedSegments(List<ExcludedSegments> excludedSegments, Object matchValue, String bucketingKey, Map<String, Object> attributes, EvaluationContext evaluationContext) {
48+
private boolean matchExcludedSegments(List<ExcludedSegments> excludedSegments, Object matchValue, String bucketingKey,
49+
Map<String, Object> attributes, EvaluationContext evaluationContext) {
4950
for (ExcludedSegments excludedSegment: excludedSegments) {
5051
if (excludedSegment.isStandard() && evaluationContext.getSegmentCache().isInSegment(excludedSegment.name, (String) matchValue)) {
5152
return true;

0 commit comments

Comments
 (0)