mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +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
|
@ -1579,7 +1579,7 @@ bool Method::load_signature_classes(const methodHandle& m, TRAPS) {
|
|||
Symbol* signature = m->signature();
|
||||
for(SignatureStream ss(signature); !ss.is_done(); ss.next()) {
|
||||
if (ss.is_object()) {
|
||||
Symbol* sym = ss.as_symbol(CHECK_(false));
|
||||
Symbol* sym = ss.as_symbol();
|
||||
Symbol* name = sym;
|
||||
Klass* klass = SystemDictionary::resolve_or_null(name, class_loader,
|
||||
protection_domain, THREAD);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue