From 36aa0537ba0e5a79a0bf40f137e9d65281bcaa9b Mon Sep 17 00:00:00 2001 From: Looly Date: Sun, 9 Oct 2022 01:34:17 +0800 Subject: [PATCH] fix test --- .../src/main/java/cn/hutool/json/writer/JSONValueWriter.java | 3 --- 1 file changed, 3 deletions(-) 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); }