From 51afde821d17f7cd0793696a764f22519421f756 Mon Sep 17 00:00:00 2001 From: Pieter De Baets Date: Tue, 4 Jul 2017 07:57:02 -0700 Subject: [PATCH] Remove some outdated references to xreact Reviewed By: kathryngray Differential Revision: D5339824 fbshipit-source-id: 486212dcf0e80036fa548a139e38358ae251ef2a --- React/Inspector/RCTInspector.mm | 2 +- ReactCommon/cxxreact/BUCK | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/React/Inspector/RCTInspector.mm b/React/Inspector/RCTInspector.mm index 6453fd166..09756cc69 100644 --- a/React/Inspector/RCTInspector.mm +++ b/React/Inspector/RCTInspector.mm @@ -16,7 +16,7 @@ using namespace facebook::react; // This is a port of the Android impl, at // react-native-github/ReactAndroid/src/main/java/com/facebook/react/bridge/Inspector.java -// react-native-github/ReactAndroid/src/main/jni/xreact/jni/JInspector.cpp +// react-native-github/ReactAndroid/src/main/jni/react/jni/JInspector.cpp // please keep consistent :) class RemoteConnection : public IRemoteConnection { diff --git a/ReactCommon/cxxreact/BUCK b/ReactCommon/cxxreact/BUCK index 72713c826..81b6176ef 100644 --- a/ReactCommon/cxxreact/BUCK +++ b/ReactCommon/cxxreact/BUCK @@ -134,7 +134,7 @@ rn_xplat_cxx_library( # some platform-dependant setup. Exactly what setup to do is # determined by some static functors, defined in `Platform.h`, which # are initially `nullptr`. On Android, these functors are properly - # assigned as part of `xreact`'s `JNI_OnLoad`. By depending directly + # assigned as part of `react/jni`'s `JNI_OnLoad`. By depending directly # on the bridge, we can mess up the SO initialisation order, causing # `initOnJSVMThread` to be called before the platform-specific hooks # have been properly initialised. Bad Times(TM).