You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ni...@apache.org on 2014/06/26 08:14:02 UTC

git commit: CAMEL-7541 Removed the System.out

Repository: camel
Updated Branches:
  refs/heads/master cd59dbb88 -> 538a7207d


CAMEL-7541 Removed the System.out


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

Branch: refs/heads/master
Commit: 538a7207d7b55a45c1aa4bb9c64c7277cffbc4f1
Parents: cd59dbb
Author: Willem Jiang <wi...@gmail.com>
Authored: Thu Jun 26 14:13:51 2014 +0800
Committer: Willem Jiang <wi...@gmail.com>
Committed: Thu Jun 26 14:13:51 2014 +0800

----------------------------------------------------------------------
 .../redis/processor/idempotent/RedisIdempotentRepository.java       | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/538a7207/components/camel-spring-redis/src/main/java/org/apache/camel/component/redis/processor/idempotent/RedisIdempotentRepository.java
----------------------------------------------------------------------
diff --git a/components/camel-spring-redis/src/main/java/org/apache/camel/component/redis/processor/idempotent/RedisIdempotentRepository.java b/components/camel-spring-redis/src/main/java/org/apache/camel/component/redis/processor/idempotent/RedisIdempotentRepository.java
index aad2da8..afe30c7 100755
--- a/components/camel-spring-redis/src/main/java/org/apache/camel/component/redis/processor/idempotent/RedisIdempotentRepository.java
+++ b/components/camel-spring-redis/src/main/java/org/apache/camel/component/redis/processor/idempotent/RedisIdempotentRepository.java
@@ -68,7 +68,6 @@ public class RedisIdempotentRepository extends ServiceSupport implements Idempot
 
     @ManagedOperation(description = "Remove the key from the store")
     public boolean remove(String key) {
-        System.out.println("Remove the key" + key);
         return setOperations.remove(processorName, key) != null;
     }