updated libraries

This commit is contained in:
2019-04-29 09:37:14 +02:00
parent 59969ccef4
commit 70a45b1919
3 changed files with 6 additions and 10 deletions

View File

@ -87,7 +87,7 @@ public abstract class FileUtil {
}
/**
* copies the givn source file to the given destination filename
* copies the given source file to the given destination filename
*
* @param source the file to copy from
* @param destination the destination filename to copy the source file to
@ -95,6 +95,7 @@ public abstract class FileUtil {
*
* @deprecated use Files.copy instead
*/
@Deprecated
public static boolean copyFileTo(File source, File destination) {
try (FileInputStream fis = new FileInputStream(source);
FileOutputStream fos = new FileOutputStream(destination)) {