Skip to content

Commit 7edc7ee

Browse files
committed
prefix on argument removed,
1 parent 2acda4a commit 7edc7ee

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

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

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,12 @@ public static string ToHexString(this byte[] b)
5353
return BitConverter.ToString(b).Replace("-", string.Empty);
5454
}
5555

56-
public static IDictionary<short, ulong> GetTableStatistic(this byte[] b, int aLength)
56+
public static IDictionary<short, ulong> GetTableStatistic(this byte[] b, int length)
5757
{
58-
int capacity = aLength > 3 ?
59-
(aLength - 3) / 6 + 1 :
60-
0;
58+
int capacity = length > 3 ? (length - 3) / 6 + 1 : 0;
59+
6160
var tableStatistic = new Dictionary<short, ulong>(capacity);
62-
for (var i = 3; i < aLength; i += 6)
61+
for (var i = 3; i < length; i += 6)
6362
{
6463
var tableId = (short)IscHelper.VaxInteger(b, i, 2);
6564
var count = (ulong)IscHelper.VaxInteger(b, i + 2, 4);

0 commit comments

Comments
 (0)