Skip to content

Commit 4ed05bc

Browse files
committed
Make POL equals method final
1 parent 8b3a3d0 commit 4ed05bc

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/object/PythonObjectLibrary.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ public boolean equalsWithState(Object receiver, Object other, PythonObjectLibrar
465465
/**
466466
* @see #equalsWithState
467467
*/
468-
public boolean equals(Object receiver, Object other, PythonObjectLibrary otherLibrary) {
468+
public final boolean equals(Object receiver, Object other, PythonObjectLibrary otherLibrary) {
469469
return equalsWithState(receiver, other, otherLibrary, null);
470470
}
471471

0 commit comments

Comments
 (0)