Skip to content

Commit 87485e2

Browse files
committed
add "final" to PythonToNativeNewRefNode, etc.
1 parent 03e4fa8 commit 87485e2

File tree

1 file changed

+2
-2
lines changed
  • graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/cext/capi/transitions

1 file changed

+2
-2
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/cext/capi/transitions/CApiTransitions.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -737,7 +737,7 @@ public static Object executeUncached(Object obj) {
737737
}
738738

739739
@Override
740-
protected boolean needsTransfer() {
740+
protected final boolean needsTransfer() {
741741
return true;
742742
}
743743
}
@@ -891,7 +891,7 @@ public static Object executeUncached(Object obj) {
891891
}
892892

893893
@Override
894-
protected boolean needsTransfer() {
894+
protected final boolean needsTransfer() {
895895
return true;
896896
}
897897
}

0 commit comments

Comments
 (0)