Deprecate redundant FileUtil.delete(File), use FileUtils instead

Bug: 475070
Change-Id: I6dc651f4b47e1b2c8d7954ec982e21ae6bb5f7a6
Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
This commit is contained in:
Andrey Loskutov 2015-08-16 18:15:30 +02:00 committed by Matthias Sohn
parent 06b446057c
commit 35d45abfb2
5 changed files with 4 additions and 20 deletions

View File

@ -285,9 +285,7 @@ public long length(File path) throws IOException {
* @since 3.3
*/
public void delete(File f) throws IOException {
if (!f.delete())
throw new IOException(MessageFormat.format(
JGitText.get().deleteFileFailed, f.getAbsolutePath()));
FileUtils.delete(f);
}
/**

View File

@ -260,11 +260,6 @@ public void setLastModified(File path, long time) throws IOException {
FileUtil.setLastModified(path, time);
}
@Override
public void delete(File path) throws IOException {
FileUtil.delete(path);
}
@Override
public long length(File f) throws IOException {
return FileUtil.getLength(f);

View File

@ -198,11 +198,6 @@ public void setLastModified(File path, long time) throws IOException {
FileUtil.setLastModified(path, time);
}
@Override
public void delete(File path) throws IOException {
FileUtil.delete(path);
}
@Override
public long length(File f) throws IOException {
return FileUtil.getLength(f);

View File

@ -183,11 +183,6 @@ public void setLastModified(File path, long time) throws IOException {
FileUtil.setLastModified(path, time);
}
@Override
public void delete(File path) throws IOException {
FileUtil.delete(path);
}
@Override
public long length(File f) throws IOException {
return FileUtil.getLength(f);

View File

@ -193,10 +193,11 @@ public static boolean canExecute(File path) {
/**
* @param path
* @throws IOException
* @deprecated use {@link FileUtils#delete(File)}
*/
@Deprecated
public static void delete(File path) throws IOException {
Path nioPath = path.toPath();
Files.delete(nioPath);
FileUtils.delete(path);
}
static Attributes getFileAttributesBasic(FS fs, File path) {