Fix missing systrace marker end (#44527)

Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/44527

Marker was never closed.

Changelog: [Internal]

Reviewed By: NickGerleman

Differential Revision: D57204350

fbshipit-source-id: 271d285fa55d72e9d3b2f74575ebff5a3fc01045
This commit is contained in:
Pieter De Baets
2024-05-13 03:58:13 -07:00
committed by Facebook GitHub Bot
parent 6a75662c9c
commit 596e14e423
@@ -292,10 +292,12 @@ final class ReactInstance {
eventBeatManager,
componentFactory,
config);
Systrace.endSection(Systrace.TRACE_TAG_REACT_JAVA_BRIDGE);
// Initialize the FabricUIManager
mFabricUIManager.initialize();
Systrace.endSection(Systrace.TRACE_TAG_REACT_JAVA_BRIDGE);
Systrace.endSection(Systrace.TRACE_TAG_REACT_JAVA_BRIDGE);
}
private static synchronized void loadLibraryIfNeeded() {