Skip to content

Commit

Permalink
ref - Removed extra semicolon
Browse files Browse the repository at this point in the history
---

Type: ref
Breaking: False
Doc Required: False
Part: 1/1
  • Loading branch information
AptiviCEO committed Mar 31, 2024
1 parent e83e1ba commit ba9c48e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion VisualCard/Parts/BaseCardPartInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public bool Equals(BaseCardPartInfo source, BaseCardPartInfo target)
source.ElementTypes.SequenceEqual(target.ElementTypes) &&
source.AltId == target.AltId &&
source.ValueType == target.ValueType &&
EqualsInternal(source, target);
EqualsInternal(source, target)
;
}

Expand Down

0 comments on commit ba9c48e

Please sign in to comment.