Skip to content

Commit 11e3db4

Browse files
committed
fix warning in generated code
1 parent 99cfb32 commit 11e3db4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1809,7 +1809,7 @@ Object method(PythonClass cls, Object self, PFunction func) {
18091809
}
18101810

18111811
@Specialization(guards = "isPythonBuiltinClass(cls)")
1812-
Object method(@SuppressWarnings("unused") PythonClass cls, Object self, PBuiltinFunction func) {
1812+
Object builtinMethod(@SuppressWarnings("unused") PythonClass cls, Object self, PBuiltinFunction func) {
18131813
return factory().createBuiltinMethod(self, func);
18141814
}
18151815
}

0 commit comments

Comments
 (0)