From cf669238315db19132e81f2ad1da91de3ca6165b Mon Sep 17 00:00:00 2001 From: David Vacca Date: Tue, 2 Oct 2018 15:02:02 -0700 Subject: [PATCH] Refactor UIManager -> FabricUIManager Summary: This diff renames com.facebook.fbreact.fabric.UIManager to FabricUIManager, this is done in order to avoid confusion with com.facebook.react.bridge.UIManager Reviewed By: shergin Differential Revision: D10128635 fbshipit-source-id: 0cb874ec1ba698077d750214f1d25004065c2f59 --- .../textlayoutmanager/platform/android/TextLayoutManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReactCommon/fabric/textlayoutmanager/platform/android/TextLayoutManager.cpp b/ReactCommon/fabric/textlayoutmanager/platform/android/TextLayoutManager.cpp index 45a86a93e31..716fc8004e9 100644 --- a/ReactCommon/fabric/textlayoutmanager/platform/android/TextLayoutManager.cpp +++ b/ReactCommon/fabric/textlayoutmanager/platform/android/TextLayoutManager.cpp @@ -31,7 +31,7 @@ Size TextLayoutManager::measure( const jni::global_ref & fabricUIManager = contextContainer_->getInstance>("FabricUIManager"); - auto clazz = jni::findClassStatic("com/facebook/fbreact/fabric/UIManager"); + auto clazz = jni::findClassStatic("com/facebook/fbreact/fabric/FabricUIManager"); static auto measure = clazz->getMethod("measure");