This commit is contained in:
Looly 2022-10-09 01:34:17 +08:00
parent 053ebf7e02
commit 36aa0537ba

View File

@ -1,7 +1,5 @@
package cn.hutool.json.writer;
import java.io.IOException;
/**
* JSON的值自定义写出
*
@ -16,7 +14,6 @@ public interface JSONValueWriter<T> {
*
* @param writer {@link JSONWriter}
* @param value 被写出的值
* @throws IOException IO异常
*/
void write(JSONWriter writer, T value);
}