Skip to content

Commit f4aab2d

Browse files
authored
Nullable compatibility (#882)
* nullable compat * undo last nullable check * nullable compat
1 parent ea0f1ac commit f4aab2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

React/Base/RCTJSInvokerModule.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
@protocol RCTJSInvokerModule
1313

1414
@property (nonatomic, copy, nonnull) void (^invokeJS)(NSString * _Nullable module, NSString * _Nullable method, NSArray * _Nullable args); // TODO(macOS GH#774)
15-
@property (nonatomic, copy) void (^invokeJSWithModuleDotMethod)(NSString *moduleDotMethod, NSArray *args);
15+
@property (nonatomic, copy) void (^invokeJSWithModuleDotMethod)(NSString * _Nullable moduleDotMethod, NSArray * _Nullable args);
1616

1717
@end

0 commit comments

Comments
 (0)