8198926: Move ClassLoaderData::_dependencies to ClassLoaderData::_handles

Move dependency creation and cleaned up logging

Reviewed-by: hseigel, jiangli
This commit is contained in:
Coleen Phillimore 2018-03-06 17:15:16 -05:00
parent a06129a432
commit 4c3e072611
21 changed files with 181 additions and 313 deletions

View file

@ -184,13 +184,6 @@ InstanceKlass* InstanceKlass::allocate_instance_klass(const ClassFileParser& par
return NULL;
}
assert(ik != NULL, "invariant");
const bool publicize = !parser.is_internal();
// Add all classes to our internal class loader list here,
// including classes in the bootstrap (NULL) class loader.
loader_data->add_class(ik, publicize);
return ik;
}