mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-19 10:34:38 +02:00
8223657: Remove unused THREAD argument from SymbolTable functions
Also made lookup and lookup_only functions private to SymbolTable. External callers use new_symbol or probe. Reviewed-by: dholmes, gziemski
This commit is contained in:
parent
23278fea38
commit
204059634d
67 changed files with 269 additions and 318 deletions
|
@ -1430,7 +1430,7 @@ void Deoptimization::load_class_by_index(const constantPoolHandle& constant_pool
|
|||
ResourceMark rm(THREAD);
|
||||
for (SignatureStream ss(symbol); !ss.is_done(); ss.next()) {
|
||||
if (ss.is_object()) {
|
||||
Symbol* class_name = ss.as_symbol(CHECK);
|
||||
Symbol* class_name = ss.as_symbol();
|
||||
Handle protection_domain (THREAD, constant_pool->pool_holder()->protection_domain());
|
||||
SystemDictionary::resolve_or_null(class_name, class_loader, protection_domain, CHECK);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue