We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f61909c commit a61bd8bCopy full SHA for a61bd8b
compiler/src/jdk.graal.compiler/src/jdk/graal/compiler/hotspot/JVMCIVersionCheck.java
@@ -113,14 +113,14 @@ static Version parse(String vmVersion) {
113
}
114
115
} catch (NumberFormatException e) {
116
- // ignore
+ // cannot parse JVMCI version numbers -> be on the safe side and ignore
117
118
} else {
119
try {
120
// assume OpenJDK version
121
return createOpenJDKVersion(stripVersion(vmVersion));
122
} catch (IllegalArgumentException e) {
123
+ // unexpected version string -> be on the safe side and ignore
124
125
126
return null;
0 commit comments