Skip to content

Commit f2827f6

Browse files
committed
feat(spanner): fixed redundant class name typo
1 parent f118fc5 commit f2827f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

google-cloud-spanner/src/main/java/com/google/cloud/spanner/connection/ConnectionOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1005,7 +1005,7 @@ static String determineHost(
10051005
// The leading '//' is already included in the regex for the connection URL, so we don't need
10061006
// to add the leading '//' to the host name here.
10071007
host = matcher.group(Builder.HOST_GROUP);
1008-
if (ConnectionOptions.Builder.EXTERNAL_HOST_FORMAT.equals(matcher.pattern().pattern())
1008+
if (Builder.EXTERNAL_HOST_FORMAT.equals(matcher.pattern().pattern())
10091009
&& !host.matches(".*:\\d+$")) {
10101010
host = String.format("%s:15000", host);
10111011
}

0 commit comments

Comments
 (0)