This commit is contained in:
Looly
2022-10-26 21:20:32 +08:00
parent c2262bc40e
commit 0d52562180
54 changed files with 1119 additions and 564 deletions

View File

@@ -74,7 +74,7 @@ public class JSONTokener {
* @throws JSONException JSON异常包装IO异常
*/
public JSONTokener(final InputStream inputStream, final JSONConfig config) throws JSONException {
this(IoUtil.getUtf8Reader(inputStream), config);
this(IoUtil.toUtf8Reader(inputStream), config);
}
/**