Skip to content

Commit 3d8f5b4

Browse files
committed
Mark lookupAttribute final
1 parent 56d3ec1 commit 3d8f5b4

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
@@ -605,7 +605,7 @@ public int asFileDescriptor(Object receiver) {
605605
* @param name attribute name
606606
* @return found attribute object or {@link PNone#NO_VALUE}
607607
*/
608-
public Object lookupAttribute(Object receiver, VirtualFrame frame, String name) {
608+
public final Object lookupAttribute(Object receiver, VirtualFrame frame, String name) {
609609
return lookupAttributeInternal(receiver, getStateFromFrame(frame), name, false);
610610
}
611611

0 commit comments

Comments
 (0)