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