Skip to content

Commit feaa22a

Browse files
committed
SuppressWarning added for one param.
1 parent 3947aeb commit feaa22a

File tree

1 file changed

+1
-1
lines changed
  • graalpython/com.oracle.graal.python/src/com/oracle/graal/python/nodes/builtins

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/nodes/builtins/TupleNodes.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ public PTuple tuple(PythonClass cls, String arg) {
9898
}
9999

100100
@Specialization(guards = {"cannotBeOverridden(cls)", "cannotBeOverridden(getClass(iterable))"})
101-
public PTuple tuple(PythonClass cls, PTuple iterable) {
101+
public PTuple tuple(@SuppressWarnings("unused") PythonClass cls, PTuple iterable) {
102102
return iterable;
103103
}
104104

0 commit comments

Comments
 (0)