Skip to content
This repository was archived by the owner on May 8, 2026. It is now read-only.

Commit 5b74013

Browse files
chore: generate libraries at Thu Feb 26 22:51:40 UTC 2026
1 parent 90c0537 commit 5b74013

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

  • google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/internal/api

google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/internal/api/TableName.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@ public static TableName parse(String name) {
6060
!parts.get(3).isEmpty(), "Invalid table name %s, must have an instance id", name);
6161
Preconditions.checkArgument(
6262
"tables".equals(parts.get(4)),
63-
"Invalid table name: %s, must start with projects/$PROJECT_ID/instances/$INSTANCE_ID/tables",
63+
"Invalid table name: %s, must start with"
64+
+ " projects/$PROJECT_ID/instances/$INSTANCE_ID/tables",
6465
name);
6566
Preconditions.checkArgument(
6667
!parts.get(5).isEmpty(), "Invalid table name %s, must have table id", name);

0 commit comments

Comments
 (0)