From cab23771039e712f367caa36a40d8bd5bd34bc52 Mon Sep 17 00:00:00 2001 From: David Vacca Date: Fri, 18 Oct 2024 11:14:34 -0700 Subject: [PATCH] Remove unused dependencies from facebook/react/interfaces (#47115) Summary: Remove unused dependencies from facebook/react/interfaces changelog: [internal] internal Reviewed By: cortinico Differential Revision: D64585748 --- .../react/interfaces/fabric/ReactSurface.kt | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/interfaces/fabric/ReactSurface.kt b/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/interfaces/fabric/ReactSurface.kt index 5f2e13b55e51e2..6121b3c1639bac 100644 --- a/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/interfaces/fabric/ReactSurface.kt +++ b/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/interfaces/fabric/ReactSurface.kt @@ -17,33 +17,33 @@ public interface ReactSurface { // the API of this interface will be completed as we analyze and refactor API of ReactSurface, // ReactRootView, etc. - // Returns surface ID of this surface + /** Returns surface ID of this surface */ public val surfaceID: Int - // Returns module name of this surface + /** Returns module name of this surface */ public val moduleName: String - // Returns whether the surface is running or not + /** Returns whether the surface is running or not */ public val isRunning: Boolean - // Returns React root view of this surface + /** Returns React root view of this surface */ public val view: ViewGroup? - // Returns context associated with the surface + /** Returns context associated with the surface */ public val context: Context - // Prerender this surface + /** Prerender this surface */ public fun prerender(): TaskInterface - // Start running this surface + /** Start running this surface */ public fun start(): TaskInterface - // Stop running this surface + /** Stop running this surface */ public fun stop(): TaskInterface - // Clear surface + /** Clear surface */ public fun clear() - // Detach surface from Host + /** Detach surface from Host */ public fun detach() }