Skip to content

Commit 9d2481d

Browse files
committed
compiler: make JVMCIVersionCheck.Version final
1 parent a61bd8b commit 9d2481d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/src/jdk.graal.compiler/src/jdk/graal/compiler/hotspot/JVMCIVersionCheck.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public static Version createLegacyVersion(int jvmciMajor, int jvmciMinor, int jv
8888
return new Version(jvmciMajor, jvmciMinor, jvmciBuild);
8989
}
9090

91-
public static class Version {
91+
public static final class Version {
9292
private final Runtime.Version jdkVersion;
9393
private final int jvmciMajor;
9494
private final int jvmciMinor;

0 commit comments

Comments
 (0)