Skip to content

Commit 5216c21

Browse files
committed
Adding @SuppressWarnings("unused")
1 parent f4f99ea commit 5216c21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/bytes/AbstractBytesBuiltins.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -784,7 +784,7 @@ protected AbstractSplitNode createRecursiveNode() {
784784
public abstract static class MakeTransNode extends PythonBuiltinNode {
785785

786786
@Specialization
787-
public PBytes maketrans(PythonClass cls, Object from, Object to,
787+
public PBytes maketrans(@SuppressWarnings("unused") PythonClass cls, Object from, Object to,
788788
@Cached("create()") BytesNodes.ToBytesNode toByteNode) {
789789
byte[] fromB = toByteNode.execute(from);
790790
byte[] toB = toByteNode.execute(to);

0 commit comments

Comments
 (0)