Skip to content

Commit bf81c7e

Browse files
author
emmanue1
committed
Fix indentation
1 parent 10adb37 commit bf81c7e

File tree

2 files changed

+408
-408
lines changed

2 files changed

+408
-408
lines changed

src/main/java/org/jd/core/v1/service/fragmenter/javasyntaxtojavafragment/visitor/ExpressionVisitor.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2008-2019 Emmanuel Dupuy.
2+
* Copyright (c) 2008, 2019 Emmanuel Dupuy.
33
* This project is distributed under the GPLv3 license.
44
* This is a Copyleft license that gives the user the right to use,
55
* copy and modify the code freely for non-commercial purposes.
@@ -86,11 +86,11 @@ public void visit(BinaryOperatorExpression expression) {
8686
visitHexa(expression, expression.getRightExpression());
8787
break;
8888
default:
89-
visit(expression, expression.getLeftExpression());
90-
tokens.add(TextToken.SPACE);
91-
tokens.add(newTextToken(expression.getOperator()));
92-
tokens.add(TextToken.SPACE);
93-
visit(expression, expression.getRightExpression());
89+
visit(expression, expression.getLeftExpression());
90+
tokens.add(TextToken.SPACE);
91+
tokens.add(newTextToken(expression.getOperator()));
92+
tokens.add(TextToken.SPACE);
93+
visit(expression, expression.getRightExpression());
9494
break;
9595
}
9696
}

0 commit comments

Comments
 (0)