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 d071860 commit 09a3eecCopy full SHA for 09a3eec
Rubberduck.VBEEditor/QualifiedModuleName.cs
@@ -71,7 +71,9 @@ public override bool Equals(object obj)
71
return other.ProjectName == ProjectName && other.ComponentName == ComponentName;
72
}
73
74
- var result = other.Component.Equals(Component) && other._contentHashCode == _contentHashCode;
+ var result = other.Project == Project
75
+ && other.ComponentName == ComponentName
76
+ && other._contentHashCode == _contentHashCode;
77
return result;
78
79
catch (InvalidCastException)
0 commit comments