We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 835d119 commit 11caaecCopy full SHA for 11caaec
MLAPI/Data/FieldType.cs
@@ -42,7 +42,7 @@ internal static object SheepCopy(this object o)
42
internal static bool SequenceEquals(this Array a1, Array a2)
43
{
44
if ((a1 == null) != (a2 == null)) return false;
45
- if (a1 == null && a2 == null) return true; //?
+ if (a1 == null || a2 == null) return true;
46
if (a1.Length != a2.Length) return false;
47
bool equal = true;
48
object val1;
0 commit comments