Actually mark DynamicFromArray.java as nullsafe

Summary:
Forgot to actually apply the annotation in the previous diff.

Changelog: [Internal]

Reviewed By: javache

Differential Revision: D72703917

fbshipit-source-id: d8f1374ebb9e11e6d67ee23541da71f8cfbd1574
This commit is contained in:
Gijs Weterings
2025-04-09 10:21:57 -07:00
committed by Facebook GitHub Bot
parent 33f4d49dcf
commit 25f5b4aafc
@@ -9,8 +9,10 @@ package com.facebook.react.bridge;
import androidx.annotation.Nullable;
import androidx.core.util.Pools;
import com.facebook.infer.annotation.Nullsafe;
/** Implementation of Dynamic wrapping a ReadableArray. */
@Nullsafe(Nullsafe.Mode.LOCAL)
class DynamicFromArray implements Dynamic {
private static final Pools.SimplePool<DynamicFromArray> sPool = new Pools.SimplePool<>(10);