remove JSONStringer

This commit is contained in:
Looly
2024-09-14 01:10:51 +08:00
parent ee13716d42
commit 70b4f773e4
86 changed files with 959 additions and 939 deletions

View File

@@ -19,7 +19,7 @@ package org.dromara.hutool.http;
import org.dromara.hutool.core.collection.ListUtil;
import org.dromara.hutool.core.net.url.UrlQuery;
import org.dromara.hutool.core.util.CharsetUtil;
import org.dromara.hutool.json.JSONObject;
import org.dromara.hutool.json.OldJSONObject;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
@@ -30,7 +30,7 @@ public class IssueIAFKWPTest {
@Test
void urlWithFormTest() {
final JSONObject obj = new JSONObject();
final OldJSONObject obj = new OldJSONObject();
obj.put("fields", ListUtil.of("1", "2", "good"));
final Map<String, Object> params = new HashMap<>();