We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c9f5fb commit b4476a0Copy full SHA for b4476a0
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/modules/SysModuleBuiltins.java
@@ -329,7 +329,9 @@ Object counted(int num) {
329
}
330
int actual = num + 1; // skip dummy frame
331
try {
332
- call.call(new Object[0]);
+ @SuppressWarnings("unused")
333
+ Object r = call.call(new Object[0]);
334
+ // r is just assigned to make spotbugs happy
335
throw raise(PythonErrorType.SystemError, "should not reach here");
336
} catch (PException e) {
337
PBaseException exception = e.getExceptionObject();
0 commit comments