You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by up...@apache.org on 2015/09/10 01:58:46 UTC

[03/50] [abbrv] incubator-geode git commit: GEODE-196: Remove unneeded system out in RuntimeIterator

GEODE-196: Remove unneeded system out in RuntimeIterator


Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/1eccf917
Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/1eccf917
Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/1eccf917

Branch: refs/heads/feature/GEODE-12
Commit: 1eccf917198b0d2ce1e3f350fbf7317d322f2eed
Parents: 5054a8a
Author: Jason Huynh <jh...@pivotal.io>
Authored: Thu Aug 13 11:13:51 2015 -0700
Committer: Jason Huynh <jh...@pivotal.io>
Committed: Thu Aug 13 11:13:51 2015 -0700

----------------------------------------------------------------------
 .../gemstone/gemfire/cache/query/internal/RuntimeIterator.java    | 3 ---
 1 file changed, 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/1eccf917/gemfire-core/src/main/java/com/gemstone/gemfire/cache/query/internal/RuntimeIterator.java
----------------------------------------------------------------------
diff --git a/gemfire-core/src/main/java/com/gemstone/gemfire/cache/query/internal/RuntimeIterator.java b/gemfire-core/src/main/java/com/gemstone/gemfire/cache/query/internal/RuntimeIterator.java
index 5b3944a..6bf0da2 100644
--- a/gemfire-core/src/main/java/com/gemstone/gemfire/cache/query/internal/RuntimeIterator.java
+++ b/gemfire-core/src/main/java/com/gemstone/gemfire/cache/query/internal/RuntimeIterator.java
@@ -137,9 +137,6 @@ public class RuntimeIterator extends AbstractCompiledValue  {
   }
 
   public Object evaluate(ExecutionContext context) {
-    if(current == UNINITIALIZED) {
-      System.out.println("asif");
-    }
     Support.Assert(current != UNINITIALIZED,
         "error to evaluate RuntimeIterator without setting current first");
     return this.current;