Skip to content

Commit 2f034af

Browse files
committed
dart format
1 parent fc46d7a commit 2f034af

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

packages/dart/lib/src/utils/parse_live_list.dart

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -622,15 +622,19 @@ class ParseLiveList<T extends ParseObject> {
622622
// List may have changed while the query was in flight
623623
if (_list.isEmpty || index >= _list.length) {
624624
if (_debug) {
625-
print('ParseLiveList: List was modified during element load (exception)');
625+
print(
626+
'ParseLiveList: List was modified during element load (exception)',
627+
);
626628
}
627629
return;
628630
}
629631

630632
final currentElement = _list[index];
631633
if (currentElement.object.objectId != element.object.objectId) {
632634
if (_debug) {
633-
print('ParseLiveList: Element at index $index changed during load (exception)');
635+
print(
636+
'ParseLiveList: Element at index $index changed during load (exception)',
637+
);
634638
}
635639
return;
636640
}

0 commit comments

Comments
 (0)