Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,14 @@ static Selector empty() {
return new Selector(0, null, true);
}

static Selector make(int version, String state) {
/**
* Creates a new Selector with the given version and state.
*
* @param version the version number
* @param state the state identifier
* @return a new Selector instance
*/
public static Selector make(int version, String state) {
return new Selector(version, state, false);
}

Expand Down