style: ArrayTools 中删除已完成的 TODO 注释

This commit is contained in:
zhouxy108 2025-04-03 09:17:31 +08:00
parent d34634a18b
commit dc3d671ea7

View File

@ -968,7 +968,7 @@ public class ArrayTools {
// #region - lastIndexOf
public static <T> int lastIndexOf(@Nullable T[] arr, Predicate<? super T> predicate) { // TODO [优化] rename
public static <T> int lastIndexOf(@Nullable T[] arr, Predicate<? super T> predicate) {
AssertTools.checkNotNull(predicate);
if (arr == null || arr.length == 0) {
return NOT_FOUND_INDEX;