Skip to content

Commit 69fe586

Browse files
committed
Fix: delegated to wrong create method.
1 parent 0faad33 commit 69fe586

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/cext/PythonObjectNativeWrapperMR.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@
6363
import com.oracle.graal.python.builtins.objects.cext.NativeWrappers.PythonNativeWrapper;
6464
import com.oracle.graal.python.builtins.objects.cext.NativeWrappers.PythonObjectNativeWrapper;
6565
import com.oracle.graal.python.builtins.objects.cext.PythonObjectNativeWrapperMRFactory.GetSulongTypeNodeGen;
66+
import com.oracle.graal.python.builtins.objects.cext.PythonObjectNativeWrapperMRFactory.InvalidateNativeObjectsAllManagedNodeGen;
6667
import com.oracle.graal.python.builtins.objects.cext.PythonObjectNativeWrapperMRFactory.PAsPointerNodeGen;
6768
import com.oracle.graal.python.builtins.objects.cext.PythonObjectNativeWrapperMRFactory.PIsPointerNodeGen;
6869
import com.oracle.graal.python.builtins.objects.cext.PythonObjectNativeWrapperMRFactory.ReadNativeMemberNodeGen;
@@ -976,7 +977,7 @@ protected Assumption nativeObjectsAllManagedAssumption() {
976977
}
977978

978979
public static InvalidateNativeObjectsAllManagedNode create() {
979-
return InvalidateNativeObjectsAllManagedNode.create();
980+
return InvalidateNativeObjectsAllManagedNodeGen.create();
980981
}
981982
}
982983

0 commit comments

Comments
 (0)