From 29103e32286e99fb25231c648b9b27795613ce03 Mon Sep 17 00:00:00 2001 From: anton0xf Date: Sun, 14 Mar 2021 22:45:38 +0500 Subject: [PATCH] JSONStringer.java: fix max nesting level in javadoc --- src/main/java/org/json/JSONStringer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/json/JSONStringer.java b/src/main/java/org/json/JSONStringer.java index bb9e7a4cf..d2a4dfba5 100644 --- a/src/main/java/org/json/JSONStringer.java +++ b/src/main/java/org/json/JSONStringer.java @@ -50,7 +50,7 @@ of this software and associated documentation files (the "Software"), to deal *

* The first method called must be array or object. * There are no methods for adding commas or colons. JSONStringer adds them for - * you. Objects and arrays can be nested up to 20 levels deep. + * you. Objects and arrays can be nested up to 200 levels deep. *

* This can sometimes be easier than using a JSONObject to build a string. * @author JSON.org