diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2018-03-10 00:45:27 +0100 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2018-03-10 19:41:27 +0100 |
commit | 164b3e9699ea63104b37ad7f1a2daa663f064049 (patch) | |
tree | a094adb2174943b7572e2ea5fd46d03e676b26d6 | |
parent | 4772569036901e5aef661bd5fd31239972f090df (diff) | |
download | jgit-164b3e9699ea63104b37ad7f1a2daa663f064049.tar.gz jgit-164b3e9699ea63104b37ad7f1a2daa663f064049.zip |
Remove deprecated TreeWalk#getEolStreamType
Use TreeWalk#getEolStreamType(OperationType) instead.
Change-Id: I0f102ddf36102ff55a71448e376ed08743da5d1f
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/treewalk/TreeWalk.java | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/treewalk/TreeWalk.java b/org.eclipse.jgit/src/org/eclipse/jgit/treewalk/TreeWalk.java index 8872689d36..41c016cff8 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/treewalk/TreeWalk.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/treewalk/TreeWalk.java @@ -633,22 +633,6 @@ public class TreeWalk implements AutoCloseable, AttributesProvider { } /** - * Get the EOL stream type of the current entry using the config and - * {@link #getAttributes()}. - * - * @return the EOL stream type of the current entry using the config and - * {@link #getAttributes()}. Note that this method may return null - * if the {@link org.eclipse.jgit.treewalk.TreeWalk} is not based on - * a working tree - * @since 4.3 - * @deprecated use {@link #getEolStreamType(OperationType)} instead. - */ - @Deprecated - public @Nullable EolStreamType getEolStreamType() { - return (getEolStreamType(operationType)); - } - - /** * Reset this walker so new tree iterators can be added to it. */ public void reset() { |