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-12 14:34:05 +00:00
committed by Fabrizio Cucci
parent 98e8e8462e
commit 9e664dc144
@@ -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
}