Skip to content

Commit 3afc83d

Browse files
committed
Fix default values comparer for null objects
1 parent 5babbe2 commit 3afc83d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Assets/Editor Toolbox/Editor/Drawers/Helpers/Extraction/ValueExtractionHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public static class ValueExtractionHelper
99
{
1010
private static readonly Func<object, object, bool> defaultComparer = (o1, o2) =>
1111
{
12-
return o1.Equals(o2);
12+
return o1 == o2;
1313
};
1414

1515
private static readonly List<IValueExtractor> extractors = new List<IValueExtractor>()

0 commit comments

Comments
 (0)