Skip to content

Commit ee83421

Browse files
author
Mike Davis
committed
Remove null check.
1 parent 2559043 commit ee83421

File tree

1 file changed

+0
-4
lines changed
  • core-api/src/main/java/com/optimizely/ab/config/audience/match

1 file changed

+0
-4
lines changed

core-api/src/main/java/com/optimizely/ab/config/audience/match/ExactMatch.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,6 @@ public Boolean eval(Object conditionValue, Object attributeValue) throws Unexpec
3434
return null;
3535
}
3636

37-
if (conditionValue == null) {
38-
return attributeValue == null;
39-
}
40-
4137
if (!(conditionValue instanceof String || conditionValue instanceof Boolean)) {
4238
throw new UnexpectedValueTypeException();
4339
}

0 commit comments

Comments
 (0)