Skip to content

Commit b08dc9a

Browse files
authored
feat: remove BetaApi annotation from OR query API (#1118)
1 parent 7f58868 commit b08dc9a

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

google-cloud-datastore/src/main/java/com/google/cloud/datastore/StructuredQuery.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
import static com.google.common.base.Preconditions.checkNotNull;
2727

2828
import com.google.api.core.ApiFunction;
29-
import com.google.api.core.BetaApi;
3029
import com.google.api.core.InternalApi;
3130
import com.google.cloud.StringEnumType;
3231
import com.google.cloud.StringEnumValue;
@@ -234,7 +233,6 @@ public static CompositeFilter and(Filter first, Filter... other) {
234233
return new CompositeFilter(Operator.AND, first, other);
235234
}
236235

237-
@BetaApi
238236
public static CompositeFilter or(Filter first, Filter... other) {
239237
return new CompositeFilter(Operator.OR, first, other);
240238
}

0 commit comments

Comments
 (0)