Fixed CS
Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/dd23610b Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/dd23610b Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/dd23610b Branch: refs/heads/master Commit: dd23610b2ddbed8baf2d757bc568f047e00a06a6 Parents: 818d548 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:04 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/dd23610b/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);