Skip to content

Commit 06db5bf

Browse files
committed
eclipseformat
1 parent 6649811 commit 06db5bf

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/modules/BuiltinFunctions.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,6 @@ public void initialize(PythonCore core) {
157157
builtinConstants.put(BuiltinNames.__DEBUG__, !optimazeFlag);
158158
}
159159

160-
161160
// abs(x)
162161
@Builtin(name = ABS, fixedNumOfArguments = 1)
163162
@GenerateNodeFactory

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/nodes/statement/AssertNode.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ public class AssertNode extends StatementNode {
4343
@Child private CastToBooleanNode condition;
4444
@Child private PNode message;
4545
@Child private LookupAndCallUnaryNode callNode;
46-
@CompilerDirectives.CompilationFinal private Boolean assertionsEnabled = null;
47-
46+
@CompilerDirectives.CompilationFinal private Boolean assertionsEnabled = null;
47+
4848
public AssertNode(CastToBooleanNode condition, PNode message) {
4949
this.condition = condition;
5050
this.message = message;

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/runtime/PythonOptions.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,9 @@ private PythonOptions() {
9696
@Option(category = OptionCategory.USER, help = "") //
9797
public static final OptionKey<Boolean> PythonInspectFlag = new OptionKey<>(false);
9898

99-
@Option(category = OptionCategory.USER, help = "Remove assert statements and any code conditional on the value of __debug__.")
100-
public static final OptionKey<Boolean> PythonOptimizeFlag = new OptionKey<>(false);
101-
99+
@Option(category = OptionCategory.USER, help = "Remove assert statements and any code conditional on the value of __debug__.") public static final OptionKey<Boolean> PythonOptimizeFlag = new OptionKey<>(
100+
false);
101+
102102
public static OptionDescriptors createDescriptors() {
103103
return new PythonOptionsOptionDescriptors();
104104
}

0 commit comments

Comments
 (0)