Skip to content

Commit 568743d

Browse files
committed
fix last commit
1 parent 6aee8bc commit 568743d

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/common/LocalsStorage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ static HashingStorage generic(LocalsStorage self, HashingStorage other,
328328
}
329329

330330
@ExportMessage
331-
public static HashingStorage clear(@Exclusive @Cached GilNode gil) {
331+
public static HashingStorage clear(@SuppressWarnings("unused") LocalsStorage self, @Exclusive @Cached GilNode gil) {
332332
boolean mustRelease = gil.acquire();
333333
try {
334334
return EconomicMapStorage.create();

0 commit comments

Comments
 (0)