src/hotspot/share/memory/universe.cpp
changeset 54847 59ea39bb2809
parent 54786 ebf733a324d4
child 54927 1512d88b24c6
equal deleted inserted replaced
54846:e4049522b074 54847:59ea39bb2809
   805                              InstanceKlass* ik,
   805                              InstanceKlass* ik,
   806                              const char* method,
   806                              const char* method,
   807                              Symbol* signature,
   807                              Symbol* signature,
   808                              bool is_static, TRAPS)
   808                              bool is_static, TRAPS)
   809 {
   809 {
   810   TempNewSymbol name = SymbolTable::new_symbol(method, CHECK);
   810   TempNewSymbol name = SymbolTable::new_symbol(method);
   811   Method* m = NULL;
   811   Method* m = NULL;
   812   // The klass must be linked before looking up the method.
   812   // The klass must be linked before looking up the method.
   813   if (!ik->link_class_or_fail(THREAD) ||
   813   if (!ik->link_class_or_fail(THREAD) ||
   814       ((m = ik->find_method(name, signature)) == NULL) ||
   814       ((m = ik->find_method(name, signature)) == NULL) ||
   815       is_static != m->is_static()) {
   815       is_static != m->is_static()) {