Browse Source

TreeWalk: Fix indentation

Change-Id: I040aaaf4e3f1e3458e0ece52d1d046f501272fc2
Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
stable-4.10
David Pursehouse 7 years ago
parent
commit
2a15a63005
  1. 4
      org.eclipse.jgit/src/org/eclipse/jgit/treewalk/TreeWalk.java

4
org.eclipse.jgit/src/org/eclipse/jgit/treewalk/TreeWalk.java

@ -596,8 +596,8 @@ public class TreeWalk implements AutoCloseable, AttributesProvider {
// TODO(msohn) make this method public in 4.4
@Nullable
EolStreamType getEolStreamType(OperationType opType) {
if (attributesNodeProvider == null || config == null)
return null;
if (attributesNodeProvider == null || config == null)
return null;
return EolStreamTypeUtil.detectStreamType(opType,
config.get(WorkingTreeOptions.KEY), getAttributes());
}

Loading…
Cancel
Save