Skip to content

Commit 17e6d11

Browse files
committed
Fix style
1 parent 4340671 commit 17e6d11

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/type/PythonManagedClass.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ public void setAttribute(Object key, Object value) {
216216
/**
217217
* Fast-path check designed for PE code.
218218
*/
219-
public final boolean canSkipOnAttributeUpdate(String key, Object value) {
219+
public final boolean canSkipOnAttributeUpdate(String key, @SuppressWarnings("unused") Object value) {
220220
return !methodResolutionOrder.hasAttributeInMROFinalAssumptions() &&
221221
!SpecialMethodSlot.canBeSpecial(key);
222222
}

0 commit comments

Comments
 (0)