You are viewing a plain text version of this content. The canonical link for it is here.
Posted to oak-commits@jackrabbit.apache.org by ju...@apache.org on 2014/06/16 07:30:50 UTC

svn commit: r1602799 - /jackrabbit/oak/branches/1.0/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/AsyncIndexUpdate.java

Author: jukka
Date: Mon Jun 16 05:30:49 2014
New Revision: 1602799

URL: http://svn.apache.org/r1602799
Log:
1.0.1: Remove accidentally committed debug prints

Modified:
    jackrabbit/oak/branches/1.0/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/AsyncIndexUpdate.java

Modified: jackrabbit/oak/branches/1.0/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/AsyncIndexUpdate.java
URL: http://svn.apache.org/viewvc/jackrabbit/oak/branches/1.0/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/AsyncIndexUpdate.java?rev=1602799&r1=1602798&r2=1602799&view=diff
==============================================================================
--- jackrabbit/oak/branches/1.0/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/AsyncIndexUpdate.java (original)
+++ jackrabbit/oak/branches/1.0/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/AsyncIndexUpdate.java Mon Jun 16 05:30:49 2014
@@ -205,7 +205,6 @@ public class AsyncIndexUpdate implements
                         + " skipping the {} index update", name);
                 return;
             } else {
-        System.err.println("Some visible changes detected");
                 before = state;
             }
         } else {
@@ -403,7 +402,6 @@ public class AsyncIndexUpdate implements
      * Checks whether there are no visible changes between the given states.
      */
     private static boolean noVisibleChanges(NodeState before, NodeState after) {
-        System.err.println("Checking for visible changes...");
         return after.compareAgainstBaseState(before, new NodeStateDiff() {
             @Override
             public boolean propertyAdded(PropertyState after) {
@@ -436,7 +434,6 @@ public class AsyncIndexUpdate implements
     }
 
     private static boolean isHidden(String name) {
-        System.err.println("  checking " + name);
         return name.charAt(0) == ':';
     }