We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cb2e3e commit b5577ccCopy full SHA for b5577cc
src/main/java/io/split/android/client/fallback/FallbackTreatmentsConfiguration.java
@@ -1,10 +1,8 @@
1
package io.split.android.client.fallback;
2
3
import androidx.annotation.Nullable;
4
+import androidx.annotation.VisibleForTesting;
5
-/**
6
- * Holds an optional by-factory {@link FallbackConfiguration} after sanitization.
7
- */
8
public final class FallbackTreatmentsConfiguration {
9
10
@Nullable
@@ -32,7 +30,7 @@ private Builder() {
32
30
mSanitizer = new FallbacksSanitizerImpl();
33
31
}
34
35
- // package-private for tests and wiring
+ @VisibleForTesting
36
Builder sanitizer(FallbacksSanitizer sanitizer) {
37
mSanitizer = sanitizer;
38
return this;
0 commit comments