From 89d9a9386f25d7fd8b5fb8d5c4e2da15744d6a88 Mon Sep 17 00:00:00 2001 From: carbotaniuman <41451839+carbotaniuman@users.noreply.github.com> Date: Tue, 11 Aug 2020 14:37:26 -0500 Subject: [PATCH] Format --- src/main/kotlin/mdnet/base/MangaDexClient.kt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main/kotlin/mdnet/base/MangaDexClient.kt b/src/main/kotlin/mdnet/base/MangaDexClient.kt index 704c700..b19d6bc 100644 --- a/src/main/kotlin/mdnet/base/MangaDexClient.kt +++ b/src/main/kotlin/mdnet/base/MangaDexClient.kt @@ -39,7 +39,6 @@ import mdnet.cache.HeaderMismatchException import org.http4k.server.Http4kServer import org.jetbrains.exposed.sql.Database import org.slf4j.LoggerFactory -import java.util.concurrent.atomic.AtomicBoolean // Exception class to handle when Client Settings have invalid values class ClientSettingsException(message: String) : Exception(message) @@ -189,7 +188,7 @@ class MangaDexClient(private val settingsFile: File, databaseFile: File, cacheFo if (stopWebUi) { LOGGER.info { "Stopping WebUI to reload ClientSettings" } - if(webUi != null) { + if (webUi != null) { stopWebUi() } }