Browse Source

fix Value 'baos' is always 'null'

tags/v3.5.0
runphp 3 years ago committed by Gitee
parent
commit
b0b16e1fc5
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
  1. 2
      ruoyi-common/ruoyi-common-core/src/main/java/com/ruoyi/common/core/utils/file/ImageUtils.java

2
ruoyi-common/ruoyi-common-core/src/main/java/com/ruoyi/common/core/utils/file/ImageUtils.java

@ -61,7 +61,6 @@ public class ImageUtils @@ -61,7 +61,6 @@ public class ImageUtils
public static byte[] readFile(String url)
{
InputStream in = null;
ByteArrayOutputStream baos = null;
try
{
// 网络地址
@ -81,7 +80,6 @@ public class ImageUtils @@ -81,7 +80,6 @@ public class ImageUtils
finally
{
IOUtils.closeQuietly(in);
IOUtils.closeQuietly(baos);
}
}
}

Loading…
Cancel
Save