Skip to content

Commit

Permalink
Remove redundant debugger display.
Browse files Browse the repository at this point in the history
  • Loading branch information
Washi1337 committed Mar 19, 2024
1 parent 3d04d26 commit b7e1459
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/Core/Echo/Memory/BitVector.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ namespace Echo.Memory
/// Represents an array of bits for which the concrete may be known or unknown, and can be reinterpreted as
/// different value types, and operated on using the different semantics of these types.
/// </summary>
// [DebuggerDisplay("{" + nameof(DebuggerDisplay) + "}")]
[DebuggerTypeProxy(typeof(BitVectorSpan))]
public class BitVector : ICloneable
{
Expand Down Expand Up @@ -266,10 +265,6 @@ public byte[] KnownMask
{
get;
}

[DebuggerBrowsable(DebuggerBrowsableState.Never)]
[EditorBrowsable(EditorBrowsableState.Never)]
internal string DebuggerDisplay => AsSpan().DebuggerDisplay;

/// <summary>
/// Gets the number of bits stored in the bit vector.
Expand Down

0 comments on commit b7e1459

Please sign in to comment.