Skip to content

Commit b5f1c30

Browse files
[FLINK-37288] Apply spotless
1 parent d97dbbc commit b5f1c30

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

flink-connector-jdbc-spanner/src/main/java/org/apache/flink/connector/jdbc/spanner/database/catalog/SpannerCatalog.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,8 @@ public SpannerCatalog(
112112
protected Function<String, String> calculateUrlFunction(String url) {
113113
// Spanner JDBC URLs use semicolons for parameters instead of question marks.
114114
// Example: "jdbc:cloudspanner://host/.../databases/;autoConfigEmulator=true"
115-
// -> urlFunction("mydb") -> "jdbc:cloudspanner://host/.../databases/mydb;autoConfigEmulator=true"
115+
// -> urlFunction("mydb") ->
116+
// "jdbc:cloudspanner://host/.../databases/mydb;autoConfigEmulator=true"
116117
int semiColonIndex = url.indexOf(';');
117118
if (semiColonIndex == -1) {
118119
// No semicolon params

0 commit comments

Comments
 (0)