Skip to content

Commit cc1cbd1

Browse files
committed
remove unneccessary supress warnings
1 parent 4f4f2c4 commit cc1cbd1

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/modules/BuiltinFunctions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,7 @@ private Object evalExpression(String expression, PythonObject globals, PythonObj
507507
* @param locals TODO: support the locals dictionary in execution
508508
*/
509509
@TruffleBoundary
510-
private static Object evalNode(RootNode root, PythonObject globals, @SuppressWarnings("unused") PythonObject locals, PCell[] closure) {
510+
private static Object evalNode(RootNode root, PythonObject globals, PythonObject locals, PCell[] closure) {
511511
Object[] args = PArguments.create();
512512
PArguments.setGlobals(args, globals);
513513
PArguments.setClosure(args, closure);

0 commit comments

Comments
 (0)