ソースを参照

Provide file mode of paths in index from IndexDiff

Change-Id: I1d543e2f721987114cc1e1cb0848c234470df794
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
tags/v1.3.0.201202121842-rc4
Kevin Sawicki 12年前
コミット
69451b8302
1個のファイルの変更11行の追加0行の削除
  1. 11
    0
      org.eclipse.jgit/src/org/eclipse/jgit/lib/IndexDiff.java

+ 11
- 0
org.eclipse.jgit/src/org/eclipse/jgit/lib/IndexDiff.java ファイルの表示

@@ -438,4 +438,15 @@ public class IndexDiff {
return ((indexDiffFilter == null) ? Collections.<String> emptySet()
: new HashSet<String>(indexDiffFilter.getUntrackedFolders()));
}

/**
* Get the file mode of the given path in the index
*
* @param path
* @return file mode
*/
public FileMode getIndexMode(final String path) {
final DirCacheEntry entry = dirCache.getEntry(path);
return entry != null ? entry.getFileMode() : FileMode.MISSING;
}
}

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