Skip to content

Commit 65b0343

Browse files
committed
Fix style in GraalHPyDebugContext
1 parent 10d7ae6 commit 65b0343

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,7 @@ public GraalHPyHandle createHandle(Object delegate) {
147147
return handle;
148148
}
149149

150+
@Override
150151
public synchronized GraalHPyHandle getObjectForHPyHandle(int handle) {
151152
try {
152153
return super.getObjectForHPyHandle(handle);
@@ -182,6 +183,7 @@ private static long toBits(int generation, int age) {
182183
return ((long) generation << Integer.SIZE) | age;
183184
}
184185

186+
@Override
185187
@TruffleBoundary
186188
void onInvalidHandle(int id) {
187189
assert GraalHPyHandle.wasAllocated(id);

0 commit comments

Comments
 (0)