Skip to content

Commit

Permalink
add toString for Fields
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathan Marz committed Jul 3, 2012
1 parent 941f419 commit 6de5bc5
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/jvm/backtype/storm/tuple/Fields.java
Expand Up @@ -65,4 +65,9 @@ private void index() {
_index.put(_fields.get(i), i);
}
}

@Override
public String toString() {
return _fields.toString();
}
}

0 comments on commit 6de5bc5

Please sign in to comment.