From 49f1237526f80e3aa09833cc13c6bb9f8ea9187c Mon Sep 17 00:00:00 2001 From: Vincent Viego Date: Thu, 6 Apr 2023 05:03:22 -0700 Subject: [PATCH] Rename FabricMountItem.* to MountItem.* (#36722) Summary: Changelog: [Android] [Breaking] - Renamed FabricMountItem.* files to MountItem.* to better match the name of the struct. Pull Request resolved: https://github.com/facebook/react-native/pull/36722 Reviewed By: cortinico, cipolleschi Differential Revision: D44540079 fbshipit-source-id: 79d8aa7c6f6b908be52009c51c4ea2f601f788fd --- .../src/main/jni/react/fabric/FabricMountingManager.cpp | 2 +- .../jni/react/fabric/{FabricMountItem.cpp => MountItem.cpp} | 2 +- .../main/jni/react/fabric/{FabricMountItem.h => MountItem.h} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename packages/react-native/ReactAndroid/src/main/jni/react/fabric/{FabricMountItem.cpp => MountItem.cpp} (98%) rename packages/react-native/ReactAndroid/src/main/jni/react/fabric/{FabricMountItem.h => MountItem.h} (100%) diff --git a/packages/react-native/ReactAndroid/src/main/jni/react/fabric/FabricMountingManager.cpp b/packages/react-native/ReactAndroid/src/main/jni/react/fabric/FabricMountingManager.cpp index f2dd15d2233..dcf8106c140 100644 --- a/packages/react-native/ReactAndroid/src/main/jni/react/fabric/FabricMountingManager.cpp +++ b/packages/react-native/ReactAndroid/src/main/jni/react/fabric/FabricMountingManager.cpp @@ -8,7 +8,7 @@ #include "FabricMountingManager.h" #include "EventEmitterWrapper.h" -#include "FabricMountItem.h" +#include "MountItem.h" #include "StateWrapperImpl.h" #include diff --git a/packages/react-native/ReactAndroid/src/main/jni/react/fabric/FabricMountItem.cpp b/packages/react-native/ReactAndroid/src/main/jni/react/fabric/MountItem.cpp similarity index 98% rename from packages/react-native/ReactAndroid/src/main/jni/react/fabric/FabricMountItem.cpp rename to packages/react-native/ReactAndroid/src/main/jni/react/fabric/MountItem.cpp index d204f306a0b..7e53343220f 100644 --- a/packages/react-native/ReactAndroid/src/main/jni/react/fabric/FabricMountItem.cpp +++ b/packages/react-native/ReactAndroid/src/main/jni/react/fabric/MountItem.cpp @@ -5,7 +5,7 @@ * LICENSE file in the root directory of this source tree. */ -#include "FabricMountItem.h" +#include "MountItem.h" namespace facebook { namespace react { diff --git a/packages/react-native/ReactAndroid/src/main/jni/react/fabric/FabricMountItem.h b/packages/react-native/ReactAndroid/src/main/jni/react/fabric/MountItem.h similarity index 100% rename from packages/react-native/ReactAndroid/src/main/jni/react/fabric/FabricMountItem.h rename to packages/react-native/ReactAndroid/src/main/jni/react/fabric/MountItem.h