Skip to content

Commit

Permalink
feat: remove BetaApi annotation from OR query API (#1118)
Browse files Browse the repository at this point in the history
  • Loading branch information
kolea2 committed Jun 21, 2023
1 parent 7f58868 commit b08dc9a
Showing 1 changed file with 0 additions and 2 deletions.
Expand Up @@ -26,7 +26,6 @@
import static com.google.common.base.Preconditions.checkNotNull;

import com.google.api.core.ApiFunction;
import com.google.api.core.BetaApi;
import com.google.api.core.InternalApi;
import com.google.cloud.StringEnumType;
import com.google.cloud.StringEnumValue;
Expand Down Expand Up @@ -234,7 +233,6 @@ public static CompositeFilter and(Filter first, Filter... other) {
return new CompositeFilter(Operator.AND, first, other);
}

@BetaApi
public static CompositeFilter or(Filter first, Filter... other) {
return new CompositeFilter(Operator.OR, first, other);
}
Expand Down

0 comments on commit b08dc9a

Please sign in to comment.