Browse Source

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 years ago
parent
commit
69451b8302
1 changed files with 11 additions and 0 deletions
  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 View File

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

Loading…
Cancel
Save