Skip to content

Commit 220314b

Browse files
Apply spotless formatting to OAuthHeaderFactory
1 parent 8459936 commit 220314b

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

databricks-sdk-java/src/main/java/com/databricks/sdk/core/oauth/OAuthHeaderFactory.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,7 @@ public Token getToken() {
5151
public Map<String, String> headers() {
5252
Token token = tokenSource.getToken();
5353
Map<String, String> headers = new HashMap<>();
54-
headers.put(
55-
"Authorization", token.getCanonicalTokenType() + " " + token.getAccessToken());
54+
headers.put("Authorization", token.getCanonicalTokenType() + " " + token.getAccessToken());
5655
return headers;
5756
}
5857
};

0 commit comments

Comments
 (0)