Skip to content

Commit bf09d5a

Browse files
committed
changed to "var"
1 parent e720df4 commit bf09d5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/FirebirdSql.Data.FirebirdClient/Common/Extensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public static string ToHexString(this byte[] b)
5353

5454
public static IDictionary<short, ulong> GetTableStatistics(this byte[] b, int length)
5555
{
56-
int capacity = length > 3 ? (length - 3) / 6 + 1 : 0;
56+
var capacity = length > 3 ? (length - 3) / 6 + 1 : 0;
5757

5858
var tableStatistics = new Dictionary<short, ulong>(capacity);
5959
for (var i = 3; i < length; i += 6)

0 commit comments

Comments
 (0)