Fix nullability of ViewManagerDelegate

Summary:
Some of these parameters were incorrectly marked as nullable during the Kotlin migration

Changelog: [Internal]

Reviewed By: tdn120

Differential Revision: D67091825

fbshipit-source-id: c660164e41ba7d47f1d1d3dc28a01b79b7c8cb03
This commit is contained in:
Pieter De Baets
2025-01-07 09:52:55 -08:00
committed by Facebook GitHub Bot
parent 7a58f1f5bf
commit 3f6fc32a5c
@@ -17,7 +17,7 @@ import com.facebook.react.bridge.ReadableArray
*
* @param <T> the type of the view supported by this delegate </T>
*/
public interface ViewManagerDelegate<T : View?> {
public interface ViewManagerDelegate<T : View> {
/**
* Sets a property on a view managed by this view manager.