Skip to content

Commit

Permalink
Remove unnecessary semi-colon before method body
Browse files Browse the repository at this point in the history
Summary:
For some clang build configurations the semi-colon triggers `-Wsemicolon-before-method-body`. This fixes that warning in iOS sources.

## Changelog

[Internal]

Differential Revision: D67203041
  • Loading branch information
rozele authored and facebook-github-bot committed Dec 13, 2024
1 parent edb3850 commit e5b0697
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ @implementation RCTNativeAnimatedNodesManager {
}

- (instancetype)initWithBridge:(nullable RCTBridge *)bridge
surfacePresenter:(id<RCTSurfacePresenterStub>)surfacePresenter;
surfacePresenter:(id<RCTSurfacePresenterStub>)surfacePresenter
{
if ((self = [super init])) {
_bridge = bridge;
Expand Down

0 comments on commit e5b0697

Please sign in to comment.