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 e720df4 commit bf09d5aCopy full SHA for bf09d5a
src/FirebirdSql.Data.FirebirdClient/Common/Extensions.cs
@@ -53,7 +53,7 @@ public static string ToHexString(this byte[] b)
53
54
public static IDictionary<short, ulong> GetTableStatistics(this byte[] b, int length)
55
{
56
- int capacity = length > 3 ? (length - 3) / 6 + 1 : 0;
+ var capacity = length > 3 ? (length - 3) / 6 + 1 : 0;
57
58
var tableStatistics = new Dictionary<short, ulong>(capacity);
59
for (var i = 3; i < length; i += 6)
0 commit comments