From 7cc7e6656424970ec98f7ce76017cb09efcfc4c4 Mon Sep 17 00:00:00 2001 From: David Vacca Date: Fri, 4 Feb 2022 10:32:46 -0800 Subject: [PATCH] Update javadoc of ReactRoot.getState() Summary: Update javadoc of ReactRoot.getState() since the task was fixed and the API remained the same changelog: [internal] internal Reviewed By: javache Differential Revision: D33981298 fbshipit-source-id: 0136a640b884a787b0a20162781735630c1fa1c7 --- .../main/java/com/facebook/react/uimanager/ReactRoot.java | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactRoot.java b/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactRoot.java index ebfb0d002f4..ddbb7932439 100644 --- a/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactRoot.java +++ b/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactRoot.java @@ -65,11 +65,6 @@ public interface ReactRoot { @Nullable String getSurfaceID(); - /** - * This API is likely to change once the fix of T78832286 is confirmed TODO: T78832286 revisit - * this API - * - * @return an {@link AtomicInteger} that represents the state of the ReactRoot object. WARNING: - */ + /** @return an {@link AtomicInteger} that represents the state of the ReactRoot object. */ AtomicInteger getState(); }