From 884d7a12244da70f87a0236afd1997efb340fdb0 Mon Sep 17 00:00:00 2001
From: lorenz <stu203404@mail.uni-kiel.de>
Date: Sat, 23 Jan 2021 15:12:48 +0100
Subject: [PATCH] fixed spelling

---
 .../src/main/kotlin/theodolite/DeploymentManager.kt             | 2 +-
 theodolite-quarkus/src/main/kotlin/theodolite/YamlLoader.kt     | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/DeploymentManager.kt b/theodolite-quarkus/src/main/kotlin/theodolite/DeploymentManager.kt
index 84507963d..c5cd75bd2 100644
--- a/theodolite-quarkus/src/main/kotlin/theodolite/DeploymentManager.kt
+++ b/theodolite-quarkus/src/main/kotlin/theodolite/DeploymentManager.kt
@@ -23,7 +23,7 @@ class DeploymentManager {
     val inputStream: InputStream = path.byteInputStream()
     val client = DefaultKubernetesClient().inNamespace("default")
 
-    val core  = client.configMaps().
+    val core  = client.configMaps()
 
     //val deployment = client.apps().deployments().load(absolute + path)
 
diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/YamlLoader.kt b/theodolite-quarkus/src/main/kotlin/theodolite/YamlLoader.kt
index 253710e39..6bf0c03ae 100644
--- a/theodolite-quarkus/src/main/kotlin/theodolite/YamlLoader.kt
+++ b/theodolite-quarkus/src/main/kotlin/theodolite/YamlLoader.kt
@@ -39,7 +39,7 @@ class YamlLoader(client: NamespacedKubernetesClient) {
         try {
             service = f(path)
         } catch (e: Exception) {
-            logger.info("You potentially  misspeled the path: $path")
+            logger.info("You potentially  misspelled the path: $path")
             logger.info("$e")
         }
 
-- 
GitLab