Skip to content

Commit

Permalink
Removed unused code.
Browse files Browse the repository at this point in the history
  • Loading branch information
genaray committed Sep 14, 2023
1 parent a535974 commit b1a2ccc
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions src/Arch/Core/Utils/BitSet.cs
Original file line number Diff line number Diff line change
Expand Up @@ -314,22 +314,6 @@ public bool None(BitSet other)
}

return true;

/*
var bits = _bits.AsSpan();
var otherBits = other._bits.AsSpan();
var count = Math.Min(_bits.Length, otherBits.Length);
for (var i = 0; i < count; i++)
{
var bit = bits[i];
if ((bit & otherBits[i]) != 0)
{
return false;
}
}
return true;*/
}

/// <summary>
Expand Down

0 comments on commit b1a2ccc

Please sign in to comment.