Skip to content

Commit 9e664dc

Browse files
mdvaccafabriziocucci
authored andcommitted
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
1 parent 98e8e84 commit 9e664dc

File tree

1 file changed

+1
-1
lines changed
  • packages/react-native/ReactAndroid/src/main/java/com/facebook/react/uimanager

1 file changed

+1
-1
lines changed

packages/react-native/ReactAndroid/src/main/java/com/facebook/react/uimanager/UIBlock.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ package com.facebook.react.uimanager
99

1010
/** A task to execute on the UI View for third party libraries. */
1111
public fun interface UIBlock {
12-
public fun execute(nativeViewHierarchyManager: NativeViewHierarchyManager?): Unit
12+
public fun execute(nativeViewHierarchyManager: NativeViewHierarchyManager): Unit
1313
}

0 commit comments

Comments
 (0)