Skip to content

Commit 8d00b26

Browse files
committed
polish
1 parent 30a11a1 commit 8d00b26

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

client/src/main/java/io/split/engine/experiments/SplitFetcherImp.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,8 @@ private Set<String> runWithoutExceptionHandling(FetchOptions options) throws Int
130130
if ((Spec.SPEC_VERSION.equals(Spec.SPEC_1_3) && (change.splits.isEmpty() || change.ruleBasedSegments.isEmpty())) ||
131131
(change.splits.isEmpty() && Spec.SPEC_VERSION.equals(Spec.SPEC_1_1))) {
132132
if (change.splits.isEmpty()) _splitCacheProducer.setChangeNumber(change.till);
133-
if (Spec.SPEC_VERSION.equals(Spec.SPEC_1_3) && change.ruleBasedSegments.isEmpty()) _ruleBasedSegmentCacheProducer.setChangeNumber(change.till);
133+
if (Spec.SPEC_VERSION.equals(Spec.SPEC_1_3) && change.ruleBasedSegments.isEmpty())
134+
_ruleBasedSegmentCacheProducer.setChangeNumber(change.till);
134135
if (Spec.SPEC_VERSION.equals(Spec.SPEC_1_3) && (change.splits.isEmpty() && change.ruleBasedSegments.isEmpty()) ||
135136
(change.splits.isEmpty() && Spec.SPEC_VERSION.equals(Spec.SPEC_1_1))) return segments;
136137
}

0 commit comments

Comments
 (0)