You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@curator.apache.org by ra...@apache.org on 2018/12/09 00:22:46 UTC

curator git commit: removed debug prints

Repository: curator
Updated Branches:
  refs/heads/CURATOR-491 b0cd91908 -> aea4086f8


removed debug prints


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

Branch: refs/heads/CURATOR-491
Commit: aea4086f802a70670a9714a2325a1b6451ddb20e
Parents: b0cd919
Author: randgalt <ra...@apache.org>
Authored: Sat Dec 8 19:22:42 2018 -0500
Committer: randgalt <ra...@apache.org>
Committed: Sat Dec 8 19:22:42 2018 -0500

----------------------------------------------------------------------
 .../apache/curator/framework/recipes/cache/PathChildrenCache.java  | 2 --
 1 file changed, 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/curator/blob/aea4086f/curator-recipes/src/main/java/org/apache/curator/framework/recipes/cache/PathChildrenCache.java
----------------------------------------------------------------------
diff --git a/curator-recipes/src/main/java/org/apache/curator/framework/recipes/cache/PathChildrenCache.java b/curator-recipes/src/main/java/org/apache/curator/framework/recipes/cache/PathChildrenCache.java
index 17044e5..2ff8a96 100644
--- a/curator-recipes/src/main/java/org/apache/curator/framework/recipes/cache/PathChildrenCache.java
+++ b/curator-recipes/src/main/java/org/apache/curator/framework/recipes/cache/PathChildrenCache.java
@@ -97,7 +97,6 @@ public class PathChildrenCache implements Closeable
         @Override
         public void process(WatchedEvent event)
         {
-            System.err.println("child: " + event);
             offerOperation(new RefreshOperation(PathChildrenCache.this, RefreshMode.STANDARD));
         }
     };
@@ -107,7 +106,6 @@ public class PathChildrenCache implements Closeable
         @Override
         public void process(WatchedEvent event)
         {
-            System.err.println("data: " + event);
             try
             {
                 if ( event.getType() == Event.EventType.NodeDeleted )