Skip to content

Commit

Permalink
[Bind] Fixed Parameter.IComparable implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
thefiddler committed May 28, 2014
1 parent 376e522 commit 547e186
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Bind/Structures/Parameter.cs
Expand Up @@ -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;
Expand Down

0 comments on commit 547e186

Please sign in to comment.