Remove some outdated references to xreact

Reviewed By: kathryngray

Differential Revision: D5339824

fbshipit-source-id: 486212dcf0e80036fa548a139e38358ae251ef2a
This commit is contained in:
Pieter De Baets 2017-07-04 07:57:02 -07:00 committed by Facebook Github Bot
parent b437d61475
commit 51afde821d
2 changed files with 2 additions and 2 deletions

View File

@ -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 {

View File

@ -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).