File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
packages/dart/lib/src/utils Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments