Skip to content

Commit

Permalink
[skip ci] Make ReactHost.createSurface() method non nullable
Browse files Browse the repository at this point in the history
Summary:
ReactHost.createSurface() should not return a nullable surface, I'm changing that here.

changelog: [Android][Breaking] Make ReactHost.createSurface() method non nullable

Differential Revision: D64910107
  • Loading branch information
mdvacca authored and facebook-github-bot committed Oct 24, 2024
1 parent dc7e9e2 commit de54e8e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public interface ReactHost {
context: Context,
moduleName: String,
initialProps: Bundle?
): ReactSurface?
): ReactSurface

/**
* This function can be used to initialize the ReactInstance in a background thread before a
Expand Down

0 comments on commit de54e8e

Please sign in to comment.