Skip to content

Commit

Permalink
Daily arc lint --take CLANGFORMAT
Browse files Browse the repository at this point in the history
Reviewed By: zertosh

Differential Revision: D20666684

fbshipit-source-id: 32255ac7509e0257693969a7b4b044569af30df7
  • Loading branch information
generatedunixname89002005287564 authored and facebook-github-bot committed Mar 26, 2020
1 parent 53212e1 commit ec2cfe9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions React/CoreModules/RCTLogBox.mm
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ + (BOOL)requiresMainQueueSetup
if (RCTRedBoxGetEnabled()) {
__weak RCTLogBox *weakSelf = self;
dispatch_async(dispatch_get_main_queue(), ^{
__strong RCTLogBox *strongSelf = weakSelf;
__strong RCTLogBox *strongSelf = weakSelf;
if (!strongSelf) {
return;
}
Expand All @@ -110,7 +110,7 @@ + (BOOL)requiresMainQueueSetup
if (RCTRedBoxGetEnabled()) {
__weak RCTLogBox *weakSelf = self;
dispatch_async(dispatch_get_main_queue(), ^{
__strong RCTLogBox *strongSelf = weakSelf;
__strong RCTLogBox *strongSelf = weakSelf;
if (!strongSelf) {
return;
}
Expand Down

0 comments on commit ec2cfe9

Please sign in to comment.