Fixed CS
Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/fd32e1cb Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/fd32e1cb Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/fd32e1cb Branch: refs/heads/camel-2.20.x Commit: fd32e1cb8a0de65a0852ac77281fa5afd3164e91 Parents: 1da22b2 Author: Andrea Cosentino <anco...@gmail.com> Authored: Wed Oct 18 08:18:04 2017 +0200 Committer: Andrea Cosentino <anco...@gmail.com> Committed: Wed Oct 18 08:18:40 2017 +0200 ---------------------------------------------------------------------- .../java/org/apache/camel/component/hdfs2/HdfsOsgiHelper.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/fd32e1cb/components/camel-hdfs2/src/main/java/org/apache/camel/component/hdfs2/HdfsOsgiHelper.java ---------------------------------------------------------------------- diff --git a/components/camel-hdfs2/src/main/java/org/apache/camel/component/hdfs2/HdfsOsgiHelper.java b/components/camel-hdfs2/src/main/java/org/apache/camel/component/hdfs2/HdfsOsgiHelper.java index d63a592..2373408 100644 --- a/components/camel-hdfs2/src/main/java/org/apache/camel/component/hdfs2/HdfsOsgiHelper.java +++ b/components/camel-hdfs2/src/main/java/org/apache/camel/component/hdfs2/HdfsOsgiHelper.java @@ -46,9 +46,9 @@ public class HdfsOsgiHelper { for (String key : fileSystems.keySet()) { URI uri = URI.create(key); conf.setClass(String.format("fs.%s.impl", uri.getScheme()), cl.loadClass(fileSystems.get(key)), FileSystem.class); - LOG.debug("Successfully loaded class: {}", fileSystems.get(key) ); + LOG.debug("Successfully loaded class: {}", fileSystems.get(key)); FileSystem.get(uri, conf); - LOG.debug("Successfully got uri: {} from FileSystem Object", uri ); + LOG.debug("Successfully got uri: {} from FileSystem Object", uri); } } catch (Exception e) { LOG.debug(e.getMessage(), e);