You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- MsalBrokerResultAdapter.getAcquireTokenResultFromResultBundle: deserialize
BrokerResult once at the top of the success branch instead of letting
authenticationResultFromBundle and getOnboardingBlobFromBundle each
deserialize the same bundle. Reuse the BrokerResult for both consumers.
- Add authenticationResultFromBrokerResult(BrokerResult) overload that builds
ILocalAuthenticationResult from a pre-deserialized BrokerResult; the
existing authenticationResultFromBundle now delegates to it (no behavior
change for other callers).
- Add getOnboardingBlobFromBundle(BrokerResult) overload that returns the blob
from a pre-deserialized BrokerResult without doing I/O. The original
Bundle-taking overload is preserved for callers that don't already have
a BrokerResult.
- BrokerResult.Builder.onboardingBlob: add 'final' to the parameter and
'@nullable' annotation, matching the surrounding builder method style.
0 commit comments