From b55a35dd0feefb98cf2a09b666d1893b39622e8a Mon Sep 17 00:00:00 2001 From: Kfir Schindelhaim Date: Thu, 1 Dec 2022 13:20:37 -0800 Subject: [PATCH] Rename CKMountable -> RCMountable Summary: ^^ Reviewed By: adamjernst Differential Revision: D41496622 fbshipit-source-id: aa4ce00ef5f05f58935e30d1570fbaa8b57c55d7 --- .../SKComponentLayoutWrapper.mm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutComponentKitSupport/SKComponentLayoutWrapper.mm b/iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutComponentKitSupport/SKComponentLayoutWrapper.mm index 02b69e012..cb3f1652a 100644 --- a/iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutComponentKitSupport/SKComponentLayoutWrapper.mm +++ b/iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutComponentKitSupport/SKComponentLayoutWrapper.mm @@ -23,8 +23,8 @@ static char const kLayoutWrapperKey = ' '; static CK::Optional findFlexboxLayoutParams( - id parent, - id child) { + id parent, + id child) { if ([parent isKindOfClass:[CKFlexboxComponent class]]) { static Ivar ivar = class_getInstanceVariable([CKFlexboxComponent class], "_children"); @@ -59,7 +59,7 @@ static CK::Optional findFlexboxLayoutParams( return cachedWrapper; } } - // TODO: Add support for `CKMountable` components. + // TODO: Add support for `RCMountable` components. CKComponent* component = (CKComponent*)layout.component; CKComponentReuseWrapper* reuseWrapper = CKAnalyticsListenerHelpers::GetReusedNodes(component);