Closed
Description
Methods indexOf
and lastIndexOf
here are documented as nullable but not annotated correspondingly.
The documentation says:
@return {@literal null} when used in pipeline / transaction or when not contained in list.
However, the methods are not annotated as @Nullable
, and the package is annotated as @NonNullApi
. This causes false-positive static analysis warnings. Sorry if I'm missing something.