Skip to content

Commit 659aaa1

Browse files
Remove confusing comment from firebase_database (flutter#480)
1 parent bd30346 commit 659aaa1

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

packages/firebase_database/lib/ui/firebase_list.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,6 @@ class FirebaseList extends ListBase<DataSnapshot>
8585

8686
int _indexForKey(String key) {
8787
assert(key != null);
88-
// TODO(jackson): We could binary search since the list is already sorted.
8988
for (int index = 0; index < _snapshots.length; index++) {
9089
if (key == _snapshots[index].key) {
9190
return index;

0 commit comments

Comments
 (0)