mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-07-21 15:09:48 +08:00
fix code
This commit is contained in:
@@ -178,7 +178,7 @@ public interface JSON extends Converter, Cloneable, Serializable {
|
||||
}
|
||||
|
||||
@Override
|
||||
default Object convert(Type targetType, Object value) throws ConvertException {
|
||||
default Object convert(final Type targetType, final Object value) throws ConvertException {
|
||||
return JSONConverter.of(getConfig()).convert(targetType, value);
|
||||
}
|
||||
}
|
||||
|
@@ -6,9 +6,9 @@
|
||||
* </ul>
|
||||
* JSON封装主要包括JSON表示和JSON转换:
|
||||
*
|
||||
* <pre>
|
||||
* Java对象 <----> JSON对象 <----> JSON字符串
|
||||
* </pre>
|
||||
* <pre>{@code
|
||||
* Java对象 <----> JSON对象 <----> JSON字符串
|
||||
* }</pre>
|
||||
*
|
||||
*
|
||||
* @author looly
|
||||
|
Reference in New Issue
Block a user