Skip to content

Commit 6fbb6f9

Browse files
committed
style: remove wrong unused annotation
1 parent 06525a6 commit 6fbb6f9

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/dict/DictBuiltins.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ private HashingStorageNodes.InitNode getInitNode() {
9090
}
9191

9292
@Specialization(guards = "args.length == 1")
93-
public Object doVarargs(PDict self, Object[] args, @SuppressWarnings("unused") PKeyword[] kwargs) {
93+
public Object doVarargs(PDict self, Object[] args, PKeyword[] kwargs) {
9494
getInitNode().execute(self, args[0], kwargs);
9595
return PNone.NONE;
9696
}

0 commit comments

Comments
 (0)