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

davsclaus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new 3ddec4e  Fixed CS
3ddec4e is described below

commit 3ddec4eebadafd2e8abd2da63135fc77230a14aa
Author: Claus Ibsen <claus.ib...@gmail.com>
AuthorDate: Tue Jul 2 08:20:08 2019 +0200

    Fixed CS
---
 .../apache/camel/component/properties/PropertiesComponent.java    | 4 ++--
 .../org/apache/camel/component/properties/PropertiesSource.java   | 8 ++++----
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git 
a/components/camel-properties/src/main/java/org/apache/camel/component/properties/PropertiesComponent.java
 
b/components/camel-properties/src/main/java/org/apache/camel/component/properties/PropertiesComponent.java
index ab39061..0697fcc 100644
--- 
a/components/camel-properties/src/main/java/org/apache/camel/component/properties/PropertiesComponent.java
+++ 
b/components/camel-properties/src/main/java/org/apache/camel/component/properties/PropertiesComponent.java
@@ -53,8 +53,6 @@ import org.slf4j.LoggerFactory;
 @ManagedResource(description = "Managed PropertiesComponent")
 public class PropertiesComponent extends DefaultComponent implements 
org.apache.camel.spi.PropertiesComponent {
 
-    private static final Logger LOG = 
LoggerFactory.getLogger(PropertiesComponent.class);
-
     /**
      *  Never check system properties.
      */
@@ -99,6 +97,8 @@ public class PropertiesComponent extends DefaultComponent 
implements org.apache.
      */
     public static final String OVERRIDE_PROPERTIES = 
PropertiesComponent.class.getName() + ".OverrideProperties";
 
+    private static final Logger LOG = 
LoggerFactory.getLogger(PropertiesComponent.class);
+
     @SuppressWarnings("unchecked")
     private final Map<CacheKey, Properties> cacheMap = 
LRUCacheFactory.newLRUSoftCache(1000);
     private transient Properties cachedProperties;
diff --git 
a/components/camel-properties/src/main/java/org/apache/camel/component/properties/PropertiesSource.java
 
b/components/camel-properties/src/main/java/org/apache/camel/component/properties/PropertiesSource.java
index 0f8f43a..fee8792 100644
--- 
a/components/camel-properties/src/main/java/org/apache/camel/component/properties/PropertiesSource.java
+++ 
b/components/camel-properties/src/main/java/org/apache/camel/component/properties/PropertiesSource.java
@@ -1,13 +1,13 @@
-/**
+/*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
  * this work for additional information regarding copyright ownership.
  * The ASF licenses this file to You under the Apache License, Version 2.0
  * (the "License"); you may not use this file except in compliance with
  * the License.  You may obtain a copy of the License at
- * <p>
- * http://www.apache.org/licenses/LICENSE-2.0
- * <p>
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

Reply via email to