mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Make UIBlock.execute params non nullable
Summary: Make UIBlock.execute params non nullable to avoid breaking changes for kotlin usages in OSS changelog: [internal] internal Reviewed By: NickGerleman Differential Revision: D69407325 fbshipit-source-id: 5fc01fba9baba97e21a388d02cf98d5aebb5ac20
This commit is contained in:
committed by
Fabrizio Cucci
parent
98e8e8462e
commit
9e664dc144
+1
-1
@@ -9,5 +9,5 @@ package com.facebook.react.uimanager
|
||||
|
||||
/** A task to execute on the UI View for third party libraries. */
|
||||
public fun interface UIBlock {
|
||||
public fun execute(nativeViewHierarchyManager: NativeViewHierarchyManager?): Unit
|
||||
public fun execute(nativeViewHierarchyManager: NativeViewHierarchyManager): Unit
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user