From 694faa1138962bf2c25af0fbbb2c2fb73ce10397 Mon Sep 17 00:00:00 2001 From: EgorK0rshun Date: Sat, 28 Oct 2023 14:18:25 +0300 Subject: [PATCH] Fix formatting --- lib/src/models/documents/nodes/line.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/models/documents/nodes/line.dart b/lib/src/models/documents/nodes/line.dart index f7211ed0..58ba9cc6 100644 --- a/lib/src/models/documents/nodes/line.dart +++ b/lib/src/models/documents/nodes/line.dart @@ -182,7 +182,7 @@ class Line extends Container { // nextLine might have been unmounted since last assert so we need to // check again we still have a line after us. - if(nextLine != null) { + if (nextLine != null) { // Move remaining children in this line to the next line so that all // attributes of nextLine are preserved. nextLine?.moveChildToNewParent(this);