Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
kamronbatman committed Oct 8, 2024
1 parent 3e69d63 commit 1f19139
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Projects/Server/Buffers/STArrayPool.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public override T[] Rent(int minimumLength)
#if DEBUG_ARRAYPOOL
_rentedArrays.AddOrUpdate(
buffer,
new RentReturnStatus { IsRented = true, StackTrace = Environment.StackTrace }
new RentReturnStatus { IsRented = true }
);
#endif
return buffer;
Expand All @@ -72,7 +72,7 @@ public override T[] Rent(int minimumLength)
#if DEBUG_ARRAYPOOL
_rentedArrays.AddOrUpdate(
buffer,
new RentReturnStatus { IsRented = true, StackTrace = Environment.StackTrace }
new RentReturnStatus { IsRented = true }
);
#endif
return buffer;
Expand Down

0 comments on commit 1f19139

Please sign in to comment.