Skip to content

Commit dccd83d

Browse files
authored
1 parent 28c3cba commit dccd83d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

common

Submodule common updated 32 files

msal/src/main/java/com/microsoft/identity/client/PublicClientApplication.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2202,7 +2202,7 @@ void performMigration(@NonNull final TokenMigrationCallback callback) {
22022202
mPublicClientConfiguration.getAppContext(),
22032203
"com.microsoft.aad.adal.cache",
22042204
new AndroidAuthSdkStorageEncryptionManager(
2205-
mPublicClientConfiguration.getAppContext(), null)
2205+
mPublicClientConfiguration.getAppContext())
22062206
);
22072207

22082208
// Load the old TokenCacheItems as key/value JSON

msal/src/main/java/com/microsoft/identity/client/SingleAccountPublicClientApplication.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ private void initializeSharedPreferenceFileManager(@NonNull final Context contex
109109
sharedPreferencesFileManager = new SharedPreferencesFileManager(
110110
context,
111111
SINGLE_ACCOUNT_CREDENTIAL_SHARED_PREFERENCES,
112-
new AndroidAuthSdkStorageEncryptionManager(context, null)
112+
new AndroidAuthSdkStorageEncryptionManager(context)
113113
);
114114
}
115115

0 commit comments

Comments
 (0)