diff --git a/ReactAndroid/src/main/java/com/facebook/react/fabric/FabricUIManager.java b/ReactAndroid/src/main/java/com/facebook/react/fabric/FabricUIManager.java index 59cc67ce8..22b08f14f 100644 --- a/ReactAndroid/src/main/java/com/facebook/react/fabric/FabricUIManager.java +++ b/ReactAndroid/src/main/java/com/facebook/react/fabric/FabricUIManager.java @@ -114,7 +114,6 @@ public class FabricUIManager implements UIManager, LifecycleEventListener { private long mRunStartTime = 0l; private long mBatchedExecutionTime = 0l; - private long mNonBatchedExecutionTime = 0l; private long mDispatchViewUpdatesTime = 0l; private long mCommitStartTime = 0l; private long mLayoutTime = 0l; @@ -348,7 +347,6 @@ public class FabricUIManager implements UIManager, LifecycleEventListener { @UiThread private void dispatchPreMountItems(long frameTimeNanos) { - long nonBatchedExecutionStartTime = SystemClock.uptimeMillis(); Systrace.beginSection(Systrace.TRACE_TAG_REACT_JAVA_BRIDGE, "FabricUIManager::premountViews"); while (true) { @@ -367,7 +365,6 @@ public class FabricUIManager implements UIManager, LifecycleEventListener { preMountItemsToDispatch.execute(mMountingManager); } - mNonBatchedExecutionTime = SystemClock.uptimeMillis() - nonBatchedExecutionStartTime; Systrace.endSection(Systrace.TRACE_TAG_REACT_JAVA_BRIDGE); } @@ -447,7 +444,6 @@ public class FabricUIManager implements UIManager, LifecycleEventListener { performanceCounters.put("DispatchViewUpdatesTime", mDispatchViewUpdatesTime); performanceCounters.put("RunStartTime", mRunStartTime); performanceCounters.put("BatchedExecutionTime", mBatchedExecutionTime); - performanceCounters.put("NonBatchedExecutionTime", mNonBatchedExecutionTime); performanceCounters.put("FinishFabricTransactionTime", mFinishTransactionTime); performanceCounters.put("FinishFabricTransactionCPPTime", mFinishTransactionCPPTime); return performanceCounters;