We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78c362c commit d5bd9e8Copy full SHA for d5bd9e8
SoundSwitch.Common/Framework/Audio/Device/DeviceInfo.cs
@@ -105,9 +105,7 @@ public override int GetHashCode()
105
unchecked
106
{
107
var hashCode = (NameClean != null ? NameClean.GetHashCode() : 0);
108
- hashCode = (hashCode * 397) ^ (Id != null ? Id.GetHashCode() : 0);
109
hashCode = (hashCode * 397) ^ (int) Type;
110
- hashCode = (hashCode * 397) ^ IsUsb.GetHashCode();
111
return hashCode;
112
}
113
0 commit comments