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:
Eric Rozell
2024-12-13 16:44:01 -08:00
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;