Skip to content

Commit 9843654

Browse files
committed
copy-paste error
1 parent d5ef994 commit 9843654

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -396,13 +396,13 @@ public String doPI(PInt x) {
396396
@Specialization
397397
public String doO(Object x,
398398
@Cached("create()") CastToIntegerFromIndexNode toIntNode,
399-
@Cached("create()") OctNode recursiveNode) {
399+
@Cached("create()") HexNode recursiveNode) {
400400
Object value = toIntNode.execute(x);
401401
return recursiveNode.executeObject(value);
402402
}
403403

404-
protected static OctNode create() {
405-
return BuiltinFunctionsFactory.OctNodeFactory.create();
404+
protected static HexNode create() {
405+
return BuiltinFunctionsFactory.HexNodeFactory.create();
406406
}
407407
}
408408

0 commit comments

Comments
 (0)