Skip to content

Commit

Permalink
Improve System.Data.Linq.Binary ctor performance (#3944)
Browse files Browse the repository at this point in the history
Fix #3943
  • Loading branch information
guillaume86 committed Jan 31, 2023
1 parent 380d526 commit d05a645
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Source/LinqToDB/Compatibility/System/Data/Linq/Binary.cs
Expand Up @@ -26,7 +26,6 @@ public Binary(byte[]? value)
_bytes = new byte[value.Length];
Array.Copy(value, _bytes, value.Length);
}
ComputeHash();
}

public byte[] ToArray()
Expand Down

0 comments on commit d05a645

Please sign in to comment.