Skip to content

Commit 3ae1af1

Browse files
committed
Fixed nullability error on Equals method
1 parent 53ec944 commit 3ae1af1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

components/RangeSelector/src/RangeSelector.Helpers.UVCoord.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ public double V
128128
return !(measure1 == measure2);
129129
}
130130

131-
public override bool Equals(object obj)
131+
public override bool Equals(object? obj)
132132
{
133133
return obj is UVCoord other && Equals(other);
134134
}

0 commit comments

Comments
 (0)