Skip to content

Commit cbe841a

Browse files
committed
fix: remove useless namespace prefix
1 parent 3724fef commit cbe841a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Assets/Preco21/Editor/DiffHelper.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public struct Record<T>
3131
public T Value;
3232
}
3333

34-
public static T? GetValueOrNull<T>(List<T> a, System.Predicate<T> predicate) where T : struct
34+
public static T? GetValueOrNull<T>(List<T> a, Predicate<T> predicate) where T : struct
3535
{
3636
var index = a.FindIndex(predicate);
3737
return index < 0 ? (T?)null : a[index];

0 commit comments

Comments
 (0)