Przeglądaj źródła

Delete deprecated FileUtils.setExecute(File, boolean)

Change-Id: Ifa63e3743fb4de25e074404c301f860a1ffb5e02
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
tags/v4.0.0.201506090130-r
Matthias Sohn 9 lat temu
rodzic
commit
f691106547

+ 0
- 14
org.eclipse.jgit/src/org/eclipse/jgit/util/FileUtil.java Wyświetl plik

@@ -212,20 +212,6 @@ public class FileUtil {
return path.canExecute();
}

/**
* @param path
* @param executable
* @return true if succeeded, false if not supported or failed
* @deprecated the implementation is highly platform dependent, consider
* using {@link FS#setExecute(File, boolean)} instead
*/
@Deprecated
public static boolean setExecute(File path, boolean executable) {
if (!isFile(path))
return false;
return path.setExecutable(executable);
}

/**
* @param path
* @throws IOException

Ładowanie…
Anuluj
Zapisz