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 a406115 commit 7f136c8Copy full SHA for 7f136c8
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/list/ListBuiltins.java
@@ -1215,12 +1215,12 @@ abstract static class IMulNode extends PythonBuiltinNode {
1215
public abstract PList execute(PList list, Object value);
1216
1217
@Specialization(guards = "isEmptyStorage(list)")
1218
- PList doEmptyBoolean(PList list, boolean right) {
+ PList doEmptyBoolean(PList list, @SuppressWarnings("unused") boolean right) {
1219
return list;
1220
}
1221
1222
1223
- PList doEmptyInt(PList list, int right) {
+ PList doEmptyInt(PList list, @SuppressWarnings("unused") int right) {
1224
1225
1226
0 commit comments