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 2019/10/06 14:06:21 UTC

[camel-quarkus] 02/02: chore: remove unused constants

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-quarkus.git

commit 6a1e1d823ec1e661f90e51b6a452b6f1198a0746
Author: lburgazzoli <lb...@gmail.com>
AuthorDate: Sun Oct 6 14:14:34 2019 +0200

    chore: remove unused constants
---
 .../main/java/org/apache/camel/quarkus/core/FastCamelContext.java  | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/extensions/core/runtime/src/main/java/org/apache/camel/quarkus/core/FastCamelContext.java b/extensions/core/runtime/src/main/java/org/apache/camel/quarkus/core/FastCamelContext.java
index a73b143..163bd3b 100644
--- a/extensions/core/runtime/src/main/java/org/apache/camel/quarkus/core/FastCamelContext.java
+++ b/extensions/core/runtime/src/main/java/org/apache/camel/quarkus/core/FastCamelContext.java
@@ -104,15 +104,8 @@ import org.apache.camel.spi.TypeConverterRegistry;
 import org.apache.camel.spi.UnitOfWorkFactory;
 import org.apache.camel.spi.UuidGenerator;
 import org.apache.camel.spi.ValidatorRegistry;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
 
 public class FastCamelContext extends AbstractCamelContext {
-    public static final String PFX_CAMEL = "camel.";
-    public static final String PFX_CAMEL_CONTEXT = PFX_CAMEL + "context.";
-    public static final String PFX_CAMEL_PROPERTIES = PFX_CAMEL + "component.properties.";
-    private static final Logger LOG = LoggerFactory.getLogger(FastCamelContext.class);
-
     private Model model;
 
     public FastCamelContext() {