File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
compiler/src/jdk.graal.compiler.libgraal/src/jdk/graal/compiler/libgraal Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -126,13 +126,12 @@ public boolean getAsBoolean() {
126126 * See javadoc for {@code jdk.graal.compiler.libgraal.loader.HostedLibGraalClassLoader}.
127127 */
128128 private static Path readLibgraalJavaHome (ClassLoader cl ) {
129- // Parfait_ALLOW impossible-redundant-condition (Parfait bug PARSEC-7191)
130129 try (InputStream in = cl .getResourceAsStream ("META-INF/libgraal.java.home" )) {
131130 if (in == null ) {
132131 throw new GraalError (cl .getClass ().getName () + " does not support META-INF/libgraal.java.home protocol (see javadoc of HostedLibGraalClassLoader)" );
133132 }
134133 return Path .of (new String (in .readAllBytes ()));
135- } catch (IOException e ) {
134+ } catch (IOException e ) { // Parfait_ALLOW impossible-redundant-condition (PARSEC-7191)
136135 throw new GraalError (e );
137136 }
138137 }
You can’t perform that action at this time.
0 commit comments