Skip to content

Commit

Permalink
Fix missing systrace marker end (#44527)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: #44527

Marker was never closed.

Changelog: [Internal]

Reviewed By: NickGerleman

Differential Revision: D57204350

fbshipit-source-id: 271d285fa55d72e9d3b2f74575ebff5a3fc01045
  • Loading branch information
javache authored and facebook-github-bot committed May 13, 2024
1 parent 6a75662 commit 596e14e
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit 596e14e

Please sign in to comment.