You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jclouds.apache.org by an...@apache.org on 2013/11/01 21:35:06 UTC

git commit: Removing debugging System.err calls mistakenly included in ecc918b4

Updated Branches:
  refs/heads/master 17ce72794 -> e2f67a756


Removing debugging System.err calls mistakenly included in ecc918b4


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

Branch: refs/heads/master
Commit: e2f67a756796d96fcbc85fb42790e186d1141755
Parents: 17ce727
Author: Andrew Phillips <an...@apache.org>
Authored: Tue Oct 22 18:53:53 2013 -0400
Committer: Andrew Phillips <an...@apache.org>
Committed: Fri Nov 1 16:33:36 2013 -0400

----------------------------------------------------------------------
 .../jclouds/aws/ec2/compute/strategy/AWSEC2ListNodesStrategy.java  | 2 --
 1 file changed, 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-jclouds/blob/e2f67a75/providers/aws-ec2/src/main/java/org/jclouds/aws/ec2/compute/strategy/AWSEC2ListNodesStrategy.java
----------------------------------------------------------------------
diff --git a/providers/aws-ec2/src/main/java/org/jclouds/aws/ec2/compute/strategy/AWSEC2ListNodesStrategy.java b/providers/aws-ec2/src/main/java/org/jclouds/aws/ec2/compute/strategy/AWSEC2ListNodesStrategy.java
index 91b5c45..81a7382 100644
--- a/providers/aws-ec2/src/main/java/org/jclouds/aws/ec2/compute/strategy/AWSEC2ListNodesStrategy.java
+++ b/providers/aws-ec2/src/main/java/org/jclouds/aws/ec2/compute/strategy/AWSEC2ListNodesStrategy.java
@@ -79,9 +79,7 @@ public class AWSEC2ListNodesStrategy extends EC2ListNodesStrategy {
                                                                                        spotInstancesByIdInRegion(idsByRegions))),
 
                                                                       spotConverter), notNull());
-      System.err.println("spots: " + spots);
       Iterable<? extends RunningInstance> superInsts = super.pollRunningInstancesByRegionsAndIds(idsByRegions);
-      System.err.println("superInsts: " + superInsts);
       return concat(superInsts, spots);
    }