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 fa195fa commit a7697c0Copy full SHA for a7697c0
src/Protocol/Models/BooleanOr.cs
@@ -15,7 +15,7 @@ public BooleanOr(bool value)
15
_bool = value;
16
}
17
18
- public bool IsValue => this._value != default;
+ public bool IsValue => !this._value.Equals(default);
19
public T Value
20
{
21
get { return this._value; }
0 commit comments