Skip to content

Commit d1781ac

Browse files
committed
switch annotation to internal in BaseKey
1 parent 0afc8d1 commit d1781ac

File tree

1 file changed

+2
-2
lines changed
  • google-cloud-datastore/src/main/java/com/google/cloud/datastore

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
import static com.google.cloud.datastore.Validator.validateNamespace;
2121
import static com.google.cloud.datastore.Validator.validateProjectId;
2222

23-
import com.google.api.core.BetaApi;
23+
import com.google.api.core.InternalApi;
2424
import com.google.common.base.MoreObjects;
2525
import com.google.common.base.Preconditions;
2626
import com.google.common.collect.ImmutableList;
@@ -117,7 +117,7 @@ public B setNamespace(String namespace) {
117117
}
118118

119119
/** Sets the database id of the key. */
120-
@BetaApi
120+
@InternalApi
121121
public B setDatabaseId(String databaseId) {
122122
this.databaseId = databaseId;
123123
return self();

0 commit comments

Comments
 (0)