mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-07-21 15:09:48 +08:00
fix code
This commit is contained in:
@@ -432,7 +432,7 @@ public final class InternalJSONUtil {
|
||||
case '\r':
|
||||
return "\\r";
|
||||
default:
|
||||
if (c < StrUtil.C_SPACE || //
|
||||
if (c < CharUtil.SPACE || //
|
||||
(c >= '\u0080' && c <= '\u00a0') || //
|
||||
(c >= '\u2000' && c <= '\u2010') || //
|
||||
(c >= '\u2028' && c <= '\u202F') || //
|
||||
|
@@ -19,7 +19,7 @@ public class JSONStrFormatter {
|
||||
/**
|
||||
* 换行符
|
||||
*/
|
||||
private static final char NEW_LINE = StrUtil.C_LF;
|
||||
private static final char NEW_LINE = CharUtil.LF;
|
||||
|
||||
/**
|
||||
* 返回格式化JSON字符串。
|
||||
|
Reference in New Issue
Block a user