Skip to content

Commit

Permalink
Report the simple name, not the hashcode
Browse files Browse the repository at this point in the history
Change-Id: I726d0aa1d1b7629307d01b326d84438fd9a6c84f

Signed-off-by: John May <john.wilkinsonmay@gmail.com>
  • Loading branch information
egonw authored and johnmay committed Jul 3, 2014
1 parent b1edcbf commit 5e7f08b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public String toString() {
StringBuffer sb = new StringBuffer();
sb.append("/");
for (int i = 0; i < sp; ++i) {
sb.append(stack[i]);
sb.append(stack[i].getClass().getSimpleName());
sb.append("/");
}
return sb.toString();
Expand Down

0 comments on commit 5e7f08b

Please sign in to comment.