ソースを参照

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年前
コミット
f691106547
1個のファイルの変更0行の追加14行の削除
  1. 0
    14
      org.eclipse.jgit/src/org/eclipse/jgit/util/FileUtil.java

+ 0
- 14
org.eclipse.jgit/src/org/eclipse/jgit/util/FileUtil.java ファイルの表示

@@ -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

読み込み中…
キャンセル
保存