Skip to content

Commit

Permalink
fix(PollinationObject): fix Equals() with the extension method
Browse files Browse the repository at this point in the history
  • Loading branch information
MingboPeng committed May 10, 2023
1 parent d91bc3b commit 8571c90
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public override bool Equals(object obj)
if (obj == null)
return false;
if (obj is PollinationObject input)
return Extension.Equals(this.Type, input.Type);
return ModelExtensions.Equals(this.Type, input.Type);
return false;
}

Expand Down

0 comments on commit 8571c90

Please sign in to comment.