Skip to content

Commit 9754926

Browse files
committed
rename score->array
1 parent 7d452c6 commit 9754926

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/lib/search/token_index.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -204,9 +204,9 @@ class BitArrayPool<K> {
204204
R withBitArrayAllSet<R>({
205205
required R Function(BitArray array) fn,
206206
}) {
207-
final score = _acquireAllSet();
208-
final r = fn(score);
209-
_release(score);
207+
final array = _acquireAllSet();
208+
final r = fn(array);
209+
_release(array);
210210
return r;
211211
}
212212
}

0 commit comments

Comments
 (0)