File tree Expand file tree Collapse file tree 2 files changed +408
-408
lines changed
main/java/org/jd/core/v1/service/fragmenter/javasyntaxtojavafragment/visitor
test/resources/java/org/jd/core/test Expand file tree Collapse file tree 2 files changed +408
-408
lines changed Original file line number Diff line number Diff line change 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 }
You can’t perform that action at this time.
0 commit comments