Comparing openid:master...ittybittyapps:master · openid/AppAuth-iOS
Commits on Oct 6, 2022
-
Fix nullability annotation for OIDExternalUserAgentIOS init
NSObject init doesn't have any nullability annotation, which is equivalent to null_unspecified. The straightforward solution would be to remove the annotation here to get in sync with the base class, but this would be incorrect: In line 34, NS_ASSUME_NONNULL_BEGIN is used, which would make the annotation default to nonnull instead of null_unspecified.