fix debugging

This commit is contained in:
Grahame Grieve 2022-11-24 19:56:07 -03:00
parent 962f3f09ea
commit 61d998963a
1 changed files with 1 additions and 2 deletions

View File

@ -28,8 +28,7 @@ public class JsonString extends JsonPrimitive {
@Override @Override
public String toString() { public String toString() {
throw new Error("This should not be called"); return "\""+ Utilities.escapeJson(value)+"\"";
// return "\""+ Utilities.escapeJson(value)+"\"";
} }
@Override @Override