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:
parent
bf1d01d79d
commit
fba580930f
|
@ -59,4 +59,10 @@ class Token {
|
|||
isReady = false;
|
||||
return this;
|
||||
}
|
||||
|
||||
// Provide toString method for IDE debugging
|
||||
@Override
|
||||
public String toString() {
|
||||
return type.name();
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue