You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by lb...@apache.org on 2020/12/14 14:46:01 UTC

[camel-k-runtime] 02/02: loader(kotlin): remove unused logger

This is an automated email from the ASF dual-hosted git repository.

lburgazzoli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git

commit ac426116a0fa77fa2171c0f2ebb820b27e6a6a8b
Author: Luca Burgazzoli <lb...@gmail.com>
AuthorDate: Mon Dec 14 14:41:24 2020 +0100

    loader(kotlin): remove unused logger
---
 .../org/apache/camel/k/loader/kotlin/dsl/ComponentsConfiguration.kt | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/camel-k-loader-kotlin/impl/src/main/kotlin/org/apache/camel/k/loader/kotlin/dsl/ComponentsConfiguration.kt b/camel-k-loader-kotlin/impl/src/main/kotlin/org/apache/camel/k/loader/kotlin/dsl/ComponentsConfiguration.kt
index 5aa5b97..cd3aece 100644
--- a/camel-k-loader-kotlin/impl/src/main/kotlin/org/apache/camel/k/loader/kotlin/dsl/ComponentsConfiguration.kt
+++ b/camel-k-loader-kotlin/impl/src/main/kotlin/org/apache/camel/k/loader/kotlin/dsl/ComponentsConfiguration.kt
@@ -18,14 +18,8 @@ package org.apache.camel.k.loader.kotlin.dsl
 
 import org.apache.camel.CamelContext
 import org.apache.camel.Component
-import org.slf4j.Logger
-import org.slf4j.LoggerFactory
 
 class ComponentsConfiguration(val context: CamelContext) {
-    companion object {
-        val LOGGER: Logger = LoggerFactory.getLogger(ComponentsConfiguration::class.java)
-    }
-
     inline fun <reified T : Component> component(name: String, block: T.() -> Unit) : T {
         var target = context.getComponent(name, true, false)
         var bind = false