Skip to content

Commit c0f3eb8

Browse files
committed
fmt
1 parent d4d14cd commit c0f3eb8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

databricks-sdk-java/src/main/java/com/databricks/sdk/core/DatabricksConfig.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -676,7 +676,7 @@ private OpenIDConnectEndpoints fetchDefaultOidcEndpoints() throws IOException {
676676
return null;
677677
}
678678
return new OpenIDConnectEndpoints(
679-
realAuthUrl.replaceAll("/authorize", "/token"), realAuthUrl);
679+
realAuthUrl.replaceAll("/authorize", "/token"), realAuthUrl);
680680
}
681681
if (isAccountClient() && getAccountId() != null) {
682682
String prefix = getHost() + "/oidc/accounts/" + getAccountId();
@@ -690,8 +690,8 @@ private OpenIDConnectEndpoints fetchDefaultOidcEndpoints() throws IOException {
690690
.build();
691691
try {
692692
return apiClient.execute(
693-
new Request("GET", "/oidc/.well-known/oauth-authorization-server"),
694-
OpenIDConnectEndpoints.class);
693+
new Request("GET", "/oidc/.well-known/oauth-authorization-server"),
694+
OpenIDConnectEndpoints.class);
695695
} catch (IOException e) {
696696
throw new DatabricksException("IO error: " + e.getMessage(), e);
697697
}

0 commit comments

Comments
 (0)