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:54 UTC

[11/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/751f2e9b
Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/751f2e9b
Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/751f2e9b

Branch: refs/heads/feature/GEODE-12
Commit: 751f2e9bed032da5ae2564d7ffaf133423b86b4c
Parents: 68b2124
Author: Jason Huynh <jh...@pivotal.io>
Authored: Thu Aug 13 11:13:51 2015 -0700
Committer: Kirk Lund <kl...@pivotal.io>
Committed: Wed Aug 19 16:08:01 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/751f2e9b/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;