]> source.dussan.org Git - jgit.git/commitdiff
TreeWalk: Fix indentation 05/111205/4
authorDavid Pursehouse <david.pursehouse@gmail.com>
Wed, 8 Nov 2017 11:21:28 +0000 (20:21 +0900)
committerDavid Pursehouse <david.pursehouse@gmail.com>
Wed, 15 Nov 2017 01:37:56 +0000 (10:37 +0900)
Change-Id: I040aaaf4e3f1e3458e0ece52d1d046f501272fc2
Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
org.eclipse.jgit/src/org/eclipse/jgit/treewalk/TreeWalk.java

index c54e1484caf62135fd383d6802464f716f500a66..e063749a2c0dc539e74f342c041e72e47ba0d86c 100644 (file)
@@ -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());
        }