File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
client/src/main/java/io/split/engine/experiments Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 77import io .split .client .dtos .Partition ;
88import io .split .client .dtos .Split ;
99import io .split .client .dtos .ConditionType ;
10+ import io .split .client .dtos .MatcherType ;
1011import io .split .engine .matchers .AllKeysMatcher ;
1112import io .split .engine .matchers .AttributeMatcher ;
1213import io .split .engine .matchers .BetweenMatcher ;
@@ -76,7 +77,7 @@ private ParsedSplit parseWithoutExceptionHandling(Split split) {
7677 private boolean checkUnsupportedMatcherExist (List <io .split .client .dtos .Matcher > matchers ) {
7778 for (io .split .client .dtos .Matcher matcher : matchers ) {
7879 try {
79- matcher .matcherType . equals ( null ) ;
80+ MatcherType typeCheck = matcher .matcherType ;
8081 } catch (NullPointerException e ) {
8182 // If the exception is caught, it means unsupported matcher
8283 return true ;
You can’t perform that action at this time.
0 commit comments