Skip to content

Commit

Permalink
Add missing @OverRide annotations in FabricUIManager
Browse files Browse the repository at this point in the history
Summary:
Add missing Override annotations in FabricUIManager

changelog: [internal] internal

Differential Revision: D53635854
  • Loading branch information
mdvacca authored and facebook-github-bot committed Feb 10, 2024
1 parent 91fe3b4 commit 4d49703
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -612,10 +612,12 @@ public boolean getThemeData(int surfaceId, float[] defaultTextInputPadding) {
return true;
}

@Override
public void addUIManagerEventListener(UIManagerListener listener) {
mListeners.add(listener);
}

@Override
public void removeUIManagerEventListener(UIManagerListener listener) {
mListeners.remove(listener);
}
Expand Down

0 comments on commit 4d49703

Please sign in to comment.