Skip to content
This repository was archived by the owner on Jun 3, 2026. It is now read-only.

Commit fba5809

Browse files
committed
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
1 parent bf1d01d commit fba5809

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

src/main/java/org/apache/commons/csv/Token.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,10 @@ Token reset() {
5959
isReady = false;
6060
return this;
6161
}
62+
63+
// Provide toString method for IDE debugging
64+
@Override
65+
public String toString() {
66+
return type.name();
67+
}
6268
}

0 commit comments

Comments
 (0)