You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2015/07/03 22:23:57 UTC

[13/13] camel git commit: Fixed CS

Fixed CS


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/c4338c65
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/c4338c65
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/c4338c65

Branch: refs/heads/master
Commit: c4338c650dfb4fa15f6698c63d3aa104a2d3e913
Parents: 8610b4a
Author: Andrea Cosentino <an...@gmail.com>
Authored: Fri Jul 3 22:21:06 2015 +0200
Committer: Andrea Cosentino <an...@gmail.com>
Committed: Fri Jul 3 22:21:06 2015 +0200

----------------------------------------------------------------------
 .../idempotent/KratiIdempotentRepository.java       | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/c4338c65/components/camel-krati/src/main/java/org/apache/camel/component/krati/processor/idempotent/KratiIdempotentRepository.java
----------------------------------------------------------------------
diff --git a/components/camel-krati/src/main/java/org/apache/camel/component/krati/processor/idempotent/KratiIdempotentRepository.java b/components/camel-krati/src/main/java/org/apache/camel/component/krati/processor/idempotent/KratiIdempotentRepository.java
index 7bd414d..96cd0e9 100644
--- a/components/camel-krati/src/main/java/org/apache/camel/component/krati/processor/idempotent/KratiIdempotentRepository.java
+++ b/components/camel-krati/src/main/java/org/apache/camel/component/krati/processor/idempotent/KratiIdempotentRepository.java
@@ -92,14 +92,14 @@ public class KratiIdempotentRepository extends ServiceSupport implements Idempot
         return true;
     }
     
-	@Override
-	public void clear() {
-		try {
-			dataSet.clear();
-		} catch (Exception e) {
-			LOG.warn("Error clear Krati idempotent repository. This exception is ignored.", e);
-		}
-	}
+    @Override
+    public void clear() {
+        try {
+            dataSet.clear();
+        } catch (Exception e) {
+            LOG.warn("Error clear Krati idempotent repository. This exception is ignored.", e);
+        }
+    }
 
     @Override
     protected void doStart() throws Exception {