Skip to content

Commit 966bd7e

Browse files
committed
style fix
1 parent ba67acc commit 966bd7e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/nodes/code/GetSignatureNode.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@
5050
import com.oracle.truffle.api.dsl.Specialization;
5151

5252
public abstract class GetSignatureNode extends PNodeWithContext {
53-
private Signature doFunctionInternal(GetFunctionCodeNode getFunctionCodeNode, PFunction function) {
53+
private static Signature doFunctionInternal(GetFunctionCodeNode getFunctionCodeNode, PFunction function) {
5454
return getFunctionCodeNode.execute(function).getSignature();
5555
}
5656

57-
private Signature doMethodInternal(GetFunctionCodeNode getFunctionCodeNode, Object function) {
57+
private static Signature doMethodInternal(GetFunctionCodeNode getFunctionCodeNode, Object function) {
5858
if (function instanceof PFunction) {
5959
return doFunctionInternal(getFunctionCodeNode, (PFunction) function);
6060
} else if (function instanceof PBuiltinFunction) {

0 commit comments

Comments
 (0)