mirror of
https://github.com/fankes/JSON-java-compat.git
synced 2025-09-09 20:14:28 +08:00
Revert "explain position information numbers in syntax exception"
This reverts commit d69d5e284b
.
This commit is contained in:
@@ -520,11 +520,11 @@ public class JSONTokener {
|
||||
/**
|
||||
* Make a printable string of this JSONTokener.
|
||||
*
|
||||
* @return " at index {index} [character number {character} in line {line}]"
|
||||
* @return " at {index} [character {character} line {line}]"
|
||||
*/
|
||||
@Override
|
||||
public String toString() {
|
||||
return " at index " + this.index + " [character number " + this.character + " in line " +
|
||||
return " at " + this.index + " [character " + this.character + " line " +
|
||||
this.line + "]";
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user