Provide toString method for IDE debugging

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1306047 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2012-03-27 23:11:32 +00:00
parent bf1d01d79d
commit fba580930f
1 changed files with 6 additions and 0 deletions

View File

@ -59,4 +59,10 @@ class Token {
isReady = false;
return this;
}
// Provide toString method for IDE debugging
@Override
public String toString() {
return type.name();
}
}