We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48f1a92 commit d4c904dCopy full SHA for d4c904d
src/hotspot/share/classfile/classFileParser.cpp
@@ -4324,13 +4324,15 @@ void ClassFileParser::check_super_interface_access(const InstanceKlass* this_kla
4324
(same_module) ? this_klass->joint_in_module_of_loader(k) : this_klass->class_in_module_of_loader(),
4325
(same_module) ? "" : "; ",
4326
(same_module) ? "" : k->class_in_module_of_loader());
4327
+ return;
4328
} else {
4329
// Add additional message content.
4330
Exceptions::fthrow(
4331
THREAD_AND_LOCATION,
4332
vmSymbols::java_lang_IllegalAccessError(),
4333
"superinterface check failed: %s",
4334
msg);
4335
4336
}
4337
4338
0 commit comments