diff --git a/Source/Bind/Structures/Parameter.cs b/Source/Bind/Structures/Parameter.cs index 7076e2466..a3c193e8a 100644 --- a/Source/Bind/Structures/Parameter.cs +++ b/Source/Bind/Structures/Parameter.cs @@ -260,7 +260,7 @@ public override string ToString() public bool Equals(Parameter other) { bool result = - base.Equals(other.Type) && + Type.Equals(other.Type) && Name.Equals(other.Name); return result;