Skip to content

Commit

Permalink
remove debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathan Marz committed Jun 21, 2012
1 parent 850572c commit 39f41e6
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/jvm/backtype/storm/testing/BatchNumberList.java
Expand Up @@ -33,12 +33,10 @@ public BatchNumberList(String wordComponent) {
@Override
public void prepare(Map conf, TopologyContext context, BatchOutputCollector collector, Object id) {
_collector = collector;
System.out.println("STARTED: " + id);
}

@Override
public void execute(Tuple tuple) {
System.out.println("RECEIVED: " + tuple.toString());
if(tuple.getSourceComponent().equals(_wordComponent)) {
this.word = tuple.getString(1);
} else {
Expand Down

0 comments on commit 39f41e6

Please sign in to comment.