1
0
Fork 0
mirror of https://github.com/ethauvin/JSON-java.git synced 2025-06-17 07:50:52 -07:00

removing some deprecated commented code

This commit is contained in:
Bence Erős 2016-04-26 23:03:01 +02:00
parent 66f740eb45
commit f857dda5d8

View file

@ -12,19 +12,6 @@ public class JSONPointerTest {
private static final JSONObject document;
// = new JSONObject("{"
// + "\"foo\": [\"bar\", \"baz\"], "
// + "\"\": 0,"
// + "\"a/b\": 1,"
// + "\"c%d\": 2,"
// + "\"e^f\": 3,"
// + "\"g|h\": 4,"
// + "\"i\\\\j\": 5,"
// + "\"k\\\\\\\"l\": 6,"
// + "\" \": 7,"
// + "\"m~n\": 8"
// + "}");
static {
document = new JSONObject(new JSONTokener(
JSONPointerTest.class.getResourceAsStream("/org/json/junit/jsonpointer-testdoc.json")));