AzureAD/microsoft-authentication-library-common-for-objc

Change isEqual logic across the common core

antrix1989 opened this issue · 0 comments

Currently we compare items like this:
result &= (!l && !r) || [l isEqualToString:r];

Change it to something like this:
result &= (l == r) || [l isEqualToString:r];

It will improve performance in the case when "l" and "r" are equal pointers.