mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
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:
committed by
Facebook GitHub Bot
parent
7a58f1f5bf
commit
3f6fc32a5c
+1
-1
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user