Commit 9582a50a authored by stancakapost's avatar stancakapost
Browse files

warn free now

parent 2231a967
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -54,6 +54,7 @@ public class FileUtils {

	// -----------------------------------------------------------------------------------------------

	@SuppressWarnings("resource")
  public static void copyFile(File in, File out) throws IOException {
		FileChannel inChannel = new FileInputStream(in).getChannel();
		FileChannel outChannel = new FileOutputStream(out).getChannel();