Skip to content

Commit e24b79b

Browse files
committed
[Truffle] RubyConstant.isAutoload should be final.
1 parent 29b11a2 commit e24b79b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

truffle/src/main/java/org/jruby/truffle/runtime/RubyConstant.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public class RubyConstant {
1818
private final RubyModule declaringModule;
1919
private final Object value;
2020
private boolean isPrivate;
21-
private boolean autoload;
21+
private final boolean autoload;
2222

2323
public RubyConstant(RubyModule declaringModule, Object value, boolean isPrivate, boolean autoload) {
2424
this.declaringModule = declaringModule;

0 commit comments

Comments
 (0)