Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShawn O. Pearce2010-07-07 16:15:02 +0000
committerShawn O. Pearce2010-07-07 16:15:02 +0000
commit384a19eee07a2f31ed9902dc94b140cd4a489f9f (patch)
tree05428645b21c52a82632a65275953ad9051ed5b1 /org.eclipse.jgit/src/org/eclipse/jgit/lib/FileMode.java
parent311da9b211dac8b96dd9b02a68b0a08846b30216 (diff)
downloadjgit-384a19eee07a2f31ed9902dc94b140cd4a489f9f.tar.gz
jgit-384a19eee07a2f31ed9902dc94b140cd4a489f9f.tar.xz
jgit-384a19eee07a2f31ed9902dc94b140cd4a489f9f.zip
Deprecate all of the older Tree related code
We want to get rid of these APIs, because they don't perform as well as DirCache/TreeWalk, or don't offer nearly as many features. Bug: 319145 Change-Id: I2b28f9cddc36482e1ad42d53e86e9d6461ba3bfc Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 'org.eclipse.jgit/src/org/eclipse/jgit/lib/FileMode.java')
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/lib/FileMode.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/lib/FileMode.java b/org.eclipse.jgit/src/org/eclipse/jgit/lib/FileMode.java
index d549b15f94..43e4dd9c15 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/lib/FileMode.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/lib/FileMode.java
@@ -82,7 +82,7 @@ public abstract class FileMode {
/** Bit pattern for {@link #TYPE_MASK} matching {@link #MISSING}. */
public static final int TYPE_MISSING = 0000000;
- /** Mode indicating an entry is a {@link Tree}. */
+ /** Mode indicating an entry is a tree (aka directory). */
@SuppressWarnings("synthetic-access")
public static final FileMode TREE = new FileMode(TYPE_TREE,
Constants.OBJ_TREE) {
@@ -91,7 +91,7 @@ public abstract class FileMode {
}
};
- /** Mode indicating an entry is a {@link SymlinkTreeEntry}. */
+ /** Mode indicating an entry is a symbolic link. */
@SuppressWarnings("synthetic-access")
public static final FileMode SYMLINK = new FileMode(TYPE_SYMLINK,
Constants.OBJ_BLOB) {
@@ -100,7 +100,7 @@ public abstract class FileMode {
}
};
- /** Mode indicating an entry is a non-executable {@link FileTreeEntry}. */
+ /** Mode indicating an entry is a non-executable file. */
@SuppressWarnings("synthetic-access")
public static final FileMode REGULAR_FILE = new FileMode(0100644,
Constants.OBJ_BLOB) {
@@ -109,7 +109,7 @@ public abstract class FileMode {
}
};
- /** Mode indicating an entry is an executable {@link FileTreeEntry}. */
+ /** Mode indicating an entry is an executable file. */
@SuppressWarnings("synthetic-access")
public static final FileMode EXECUTABLE_FILE = new FileMode(0100755,
Constants.OBJ_BLOB) {

Back to the top