This commit is contained in:
Looly
2023-03-27 01:47:02 +08:00
parent 7324502249
commit 16f7549c7d
27 changed files with 454 additions and 393 deletions

View File

@@ -890,7 +890,7 @@ public class IoUtil extends NioUtil {
*
* @param closeable 被关闭的对象
*/
public static void close(final Closeable closeable) {
public static void close(final AutoCloseable closeable) {
if (null != closeable) {
try {
closeable.close();