Skip to content

Commit

Permalink
switch annotation to internal in BaseKey
Browse files Browse the repository at this point in the history
  • Loading branch information
kolea2 committed Jun 8, 2023
1 parent 0afc8d1 commit d1781ac
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import static com.google.cloud.datastore.Validator.validateNamespace;
import static com.google.cloud.datastore.Validator.validateProjectId;

import com.google.api.core.BetaApi;
import com.google.api.core.InternalApi;
import com.google.common.base.MoreObjects;
import com.google.common.base.Preconditions;
import com.google.common.collect.ImmutableList;
Expand Down Expand Up @@ -117,7 +117,7 @@ public B setNamespace(String namespace) {
}

/** Sets the database id of the key. */
@BetaApi
@InternalApi
public B setDatabaseId(String databaseId) {
this.databaseId = databaseId;
return self();
Expand Down

0 comments on commit d1781ac

Please sign in to comment.