File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/modules Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2146,13 +2146,13 @@ abstract static class PyBytes_FromStringAndSize extends NativeBuiltin {
2146
2146
// PythonNativeObject)
2147
2147
2148
2148
@ Specialization
2149
- Object doGeneric (Object module , PByteArray object ,
2149
+ Object doGeneric (@ SuppressWarnings ( "unused" ) Object module , PByteArray object ,
2150
2150
@ Exclusive @ Cached BytesNodes .ToBytesNode getByteArrayNode ) {
2151
2151
return factory ().createBytes (getByteArrayNode .execute (object ));
2152
2152
}
2153
2153
2154
2154
@ Specialization
2155
- Object doGeneric (Object module , PBytes object ,
2155
+ Object doGeneric (@ SuppressWarnings ( "unused" ) Object module , PBytes object ,
2156
2156
@ Exclusive @ Cached BytesNodes .ToBytesNode getByteArrayNode ) {
2157
2157
return factory ().createBytes (getByteArrayNode .execute (object ));
2158
2158
}
You can’t perform that action at this time.
0 commit comments