From f9a4d248167ae4b3742d926879c3188c8f3d44b8 Mon Sep 17 00:00:00 2001
From: Justin Brooks <justin@jzbrooks.com>
Date: Sat, 27 Jul 2024 09:46:21 -0400
Subject: [PATCH] Format code

---
 vgo/src/main/kotlin/com/jzbrooks/vgo/Application.kt | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/vgo/src/main/kotlin/com/jzbrooks/vgo/Application.kt b/vgo/src/main/kotlin/com/jzbrooks/vgo/Application.kt
index c3568e46..842be7db 100644
--- a/vgo/src/main/kotlin/com/jzbrooks/vgo/Application.kt
+++ b/vgo/src/main/kotlin/com/jzbrooks/vgo/Application.kt
@@ -155,10 +155,10 @@ class Application {
                                 if (errors != "") {
                                     System.err.println(
                                         """
-                                            Skipping ${input.path}
+                                        Skipping ${input.path}
 
-                                              $errors
-                                        """.trimIndent()
+                                          $errors
+                                        """.trimIndent(),
                                     )
                                     null
                                 } else {
@@ -167,9 +167,10 @@ class Application {
                                         DOCUMENT_BUILDER_FACTORY.newDocumentBuilder().parse(pipeTerminal)
                                     convertedDocument.documentElement.normalize()
 
-                                    val documentRoot = convertedDocument.childNodes.asSequence().first {
-                                        it.nodeType == Document.ELEMENT_NODE
-                                    }
+                                    val documentRoot =
+                                        convertedDocument.childNodes.asSequence().first {
+                                            it.nodeType == Document.ELEMENT_NODE
+                                        }
 
                                     com.jzbrooks.vgo.vd.parse(documentRoot)
                                 }