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:
David Vacca
2025-02-10 14:12:32 -08:00
committed by Facebook GitHub Bot
parent d4236791e2
commit c60f6fbb2a
@@ -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
}