Remove unused exception declarations.

This commit is contained in:
akwizgran
2018-05-11 09:20:57 +01:00
parent 5e0ca10dae
commit f3b69a26f8
2 changed files with 3 additions and 5 deletions

View File

@@ -39,8 +39,7 @@ public class IoUtils {
}
}
public static void copyAndClose(InputStream in, OutputStream out)
throws IOException {
public static void copyAndClose(InputStream in, OutputStream out) {
byte[] buf = new byte[4096];
try {
while (true) {