Skip to content

Commit

Permalink
chore(ios): eliminate unnecessary null warning
Browse files Browse the repository at this point in the history
  • Loading branch information
wwwcg committed Jun 13, 2024
1 parent 2055bd2 commit 7e6908d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion renderer/native/ios/renderer/HippyComponentMap.mm
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ - (void)removeComponent:(__kindof id<HippyComponent>)component forRootTag:(NSNum
id map = [_componentsMap objectForKey:tag];
return [map objectForKey:componentTag];
} else {
HippyLogError(@"componentTag && tag must not be null");
HippyLogWarn(@"componentTag && tag must not be null");
}
return nil;
}
Expand Down

0 comments on commit 7e6908d

Please sign in to comment.