mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
001b04f983
Summary: This diff removes unused method on the FabricBinding class, these methods were being used as part of the Fabric Android implementation, but they are not necessary anymore. Reviewed By: shergin Differential Revision: D10128636 fbshipit-source-id: 5afef4c2e9f4955af008200c5bdd2b6acc7ef333
18 lines
527 B
Java
18 lines
527 B
Java
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* <p>This source code is licensed under the MIT license found in the LICENSE file in the root
|
|
* directory of this source tree.
|
|
*/
|
|
package com.facebook.react.fabric;
|
|
|
|
import com.facebook.react.bridge.JavaScriptContextHolder;
|
|
|
|
public interface FabricBinding {
|
|
|
|
// TODO: T31905686 change types of UIManager and EventBeatManager when moving to OSS
|
|
void installFabric(
|
|
JavaScriptContextHolder jsContext, FabricBinder fabricBinder, Object eventBeatManager);
|
|
|
|
}
|