Make orEquals() public.

Addresses the easy issue for https://github.com/apple/foundationdb/issues/5190
This commit is contained in:
Clement Pang 2021-07-23 12:03:17 +08:00
parent 37a0361617
commit 9496e12861
1 changed files with 1 additions and 1 deletions

View File

@ -167,7 +167,7 @@ public class KeySelector {
/**
* Returns the {@code or-equal} parameter of this {@code KeySelector}. For internal use.
*/
boolean orEqual() {
public boolean orEqual() {
return orEqual;
}