We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0bfd3ed commit 9f4f2eeCopy full SHA for 9f4f2ee
lib/shared/internal/src/main/java/com/launchdarkly/sdk/internal/fdv2/sources/Selector.java
@@ -45,7 +45,14 @@ static Selector empty() {
45
return new Selector(0, null, true);
46
}
47
48
- static Selector make(int version, String state) {
+ /**
49
+ * Creates a new Selector with the given version and state.
50
+ *
51
+ * @param version the version number
52
+ * @param state the state identifier
53
+ * @return a new Selector instance
54
+ */
55
+ public static Selector make(int version, String state) {
56
return new Selector(version, state, false);
57
58
0 commit comments