Skip to content

Commit 97939ac

Browse files
committed
fmt
1 parent c79b02d commit 97939ac

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -839,8 +839,8 @@ HostMetadata getHostMetadata() throws IOException {
839839
* <p><b>Note:</b> This API is experimental and may change or be removed in future releases
840840
* without notice.
841841
*
842-
* @throws DatabricksException if {@code accountId} cannot be resolved or {@code oidc_endpoint}
843-
* is missing from the host metadata.
842+
* @throws DatabricksException if {@code accountId} cannot be resolved or {@code oidc_endpoint} is
843+
* missing from the host metadata.
844844
*/
845845
void resolveHostMetadata() throws IOException {
846846
if (host == null) {

databricks-sdk-java/src/test/java/com/databricks/sdk/core/DatabricksConfigTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -513,8 +513,7 @@ public void testResolveHostMetadataAccountSubstitutesAccountId() throws IOExcept
513513
config.resolve(emptyEnv());
514514
config.resolveHostMetadata();
515515
assertEquals(
516-
"https://acc.databricks.com/oidc/accounts/" + DUMMY_ACCOUNT_ID,
517-
config.getDiscoveryUrl());
516+
"https://acc.databricks.com/oidc/accounts/" + DUMMY_ACCOUNT_ID, config.getDiscoveryUrl());
518517
}
519518
}
520519

0 commit comments

Comments
 (0)