Skip to content

Commit c3548f6

Browse files
committed
Formatting
1 parent ace1df6 commit c3548f6

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/main/java/com/microsoft/sqlserver/jdbc/SQLServerSecurityUtility.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,8 @@ static SqlAuthenticationToken getManagedIdentityCredAuthToken(String resource,
346346
logger.finest("Getting Managed Identity authentication token for: " + managedIdentityClientId);
347347
}
348348

349-
String key = getHashedSecret(new String[]{managedIdentityClientId, ManagedIdentityCredential.class.getSimpleName()});
349+
String key = getHashedSecret(
350+
new String[] {managedIdentityClientId, ManagedIdentityCredential.class.getSimpleName()});
350351
ManagedIdentityCredential mic = (ManagedIdentityCredential) getCredentialFromCache(key);
351352

352353
if (null == mic) {

src/test/java/com/microsoft/sqlserver/jdbc/unit/SQLServerErrorTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public static void setupTests() throws Exception {
4141

4242
@Test
4343
@Tag(Constants.xAzureSQLDW)
44-
public void testLoginFailedError() {
44+
public void testLoginFailedError() {
4545
SQLServerDataSource ds = new SQLServerDataSource();
4646
ds.setURL(connectionString);
4747
ds.setLoginTimeout(loginTimeOutInSeconds);

0 commit comments

Comments
 (0)