From c1badd1a29607964aec49e325716a0dccdd85864 Mon Sep 17 00:00:00 2001 From: Lorenzo Blasa Date: Wed, 15 Feb 2023 03:55:28 -0800 Subject: [PATCH] RCMountable -> CKMountable (#4522) Summary: Pull Request resolved: https://github.com/facebook/flipper/pull/4522 ^ A codemod changed the name of `CKMountable` for the OSS ComponentKit integration, this is a breaking change as we are pinned to a specific Cocoapods version of CK. Reviewed By: passy Differential Revision: D43303489 fbshipit-source-id: 4d8ad472735414ca8e67a8ce4409efe84aab3e94 --- .../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 cb3f1652a..02b69e012 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 `RCMountable` components. + // TODO: Add support for `CKMountable` components. CKComponent* component = (CKComponent*)layout.component; CKComponentReuseWrapper* reuseWrapper = CKAnalyticsListenerHelpers::GetReusedNodes(component);