mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Remove unnecessary semi-colon before method body (#48266)
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/48266 For some clang build configurations the semi-colon triggers `-Wsemicolon-before-method-body`. This fixes that warning in iOS sources. ## Changelog [Internal] Reviewed By: cipolleschi Differential Revision: D67203041 fbshipit-source-id: f2f2f3799691c3fc59e102a852ca2cf61154e55e
This commit is contained in:
committed by
Facebook GitHub Bot
parent
ae90dd3aaa
commit
9a2b807dcb
@@ -57,7 +57,7 @@ static NSString *RCTNormalizeAnimatedEventName(NSString *eventName)
|
||||
}
|
||||
|
||||
- (instancetype)initWithBridge:(nullable RCTBridge *)bridge
|
||||
surfacePresenter:(id<RCTSurfacePresenterStub>)surfacePresenter;
|
||||
surfacePresenter:(id<RCTSurfacePresenterStub>)surfacePresenter
|
||||
{
|
||||
if ((self = [super init])) {
|
||||
_bridge = bridge;
|
||||
|
||||
Reference in New Issue
Block a user