Skip to content

Commit 2ac265b

Browse files
committed
style fixes
1 parent 282e1bc commit 2ac265b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/nodes/frame/ReadLocalsNode.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,8 @@ public static ReadLocalsNode create() {
105105
}
106106

107107
/**
108-
* Fast access to custom locals if a custom dict was provided by the caller and the python frame does not escape.
108+
* Fast access to custom locals if a custom dict was provided by the caller and the python frame
109+
* does not escape.
109110
*
110111
* @param frame the current frame
111112
* @param havePyFrame profile if we do have a python frame (PFrame)
@@ -115,7 +116,7 @@ public static ReadLocalsNode create() {
115116
public static PythonObject fastGetCustomLocalsOrGlobals(VirtualFrame frame, ConditionProfile havePyFrame, ConditionProfile haveCustomLocals) {
116117
PFrame pyFrame = PArguments.getCurrentFrameInfo(frame).getPyFrame();
117118
if (havePyFrame.profile(pyFrame != null) && haveCustomLocals.profile(pyFrame.getLocals(null) != null)) {
118-
return (PythonObject) pyFrame.getLocals(null);
119+
return (PythonObject) pyFrame.getLocals(null);
119120
}
120121
// return the globals
121122
return PArguments.getGlobals(frame);

0 commit comments

Comments
 (0)