aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firebase/Core/Private
diff options
context:
space:
mode:
authorGravatar Benoit St-Pierre <bstpierre@google.com>2018-02-26 19:17:17 -0500
committerGravatar Benoit St-Pierre <bstpierre@google.com>2018-02-26 19:17:17 -0500
commit11b431fa34f72218e4d28e648ff5ffd5c3f9c47b (patch)
tree3d4c2caa3797df652be9df8c9e6bd1e5a46ecdb3 /Firebase/Core/Private
parent23a6f901be12b45c83c08c3124f30eed54bc08fc (diff)
Remove unnecessary nonnull annotations
Diffstat (limited to 'Firebase/Core/Private')
-rw-r--r--Firebase/Core/Private/FIRAppInternal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Firebase/Core/Private/FIRAppInternal.h b/Firebase/Core/Private/FIRAppInternal.h
index 09f7829..b7cf5e8 100644
--- a/Firebase/Core/Private/FIRAppInternal.h
+++ b/Firebase/Core/Private/FIRAppInternal.h
@@ -142,8 +142,8 @@ typedef NSString *_Nullable (^FIRAppGetUIDImplementation)(void);
* @param version Version of the library
*/
// clang-format off
-+ (void)registerLibrary:(nonnull NSString *)library
- withVersion:(nonnull NSString *)version NS_SWIFT_NAME(registerLibrary(_:version:));
++ (void)registerLibrary:(NSString *)library
+ withVersion:(NSString *)version NS_SWIFT_NAME(registerLibrary(_:version:));
// clang-format on
/**