Browse Source

Remove deprecated TreeWalk#getEolStreamType

Use TreeWalk#getEolStreamType(OperationType) instead.

Change-Id: I0f102ddf36102ff55a71448e376ed08743da5d1f
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
tags/v5.0.0.201805151920-m7
Matthias Sohn 6 years ago
parent
commit
164b3e9699
1 changed files with 0 additions and 16 deletions
  1. 0
    16
      org.eclipse.jgit/src/org/eclipse/jgit/treewalk/TreeWalk.java

+ 0
- 16
org.eclipse.jgit/src/org/eclipse/jgit/treewalk/TreeWalk.java View File

@@ -632,22 +632,6 @@ public class TreeWalk implements AutoCloseable, AttributesProvider {
config.get(WorkingTreeOptions.KEY), getAttributes());
}

/**
* 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.
*/

Loading…
Cancel
Save