git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1496024 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2013-06-24 13:13:57 +00:00
parent ad0acc17e1
commit df4bd36e7b
1 changed files with 5 additions and 1 deletions

View File

@ -63,7 +63,11 @@ final class Token {
isReady = false; isReady = false;
} }
// Provide toString method for IDE debugging /**
* Eases IDE debugging.
*
* @return a string helpful for debugging.
*/
@Override @Override
public String toString() { public String toString() {
return type.name() + " [" + content.toString() + "]"; return type.name() + " [" + content.toString() + "]";