src/share/vm/oops/cpCache.cpp

changeset 6720
0b9500028980
parent 6680
78bbf4d43a14
child 6876
710a3c8b516e
child 6911
ce8f6bb717c9
     1.1 --- a/src/share/vm/oops/cpCache.cpp	Wed Jun 11 10:46:47 2014 +0200
     1.2 +++ b/src/share/vm/oops/cpCache.cpp	Mon Jun 02 14:32:29 2014 -0400
     1.3 @@ -406,7 +406,7 @@
     1.4  
     1.5  
     1.6  oop ConstantPoolCacheEntry::appendix_if_resolved(constantPoolHandle cpool) {
     1.7 -  if (is_f1_null() || !has_appendix())
     1.8 +  if (!has_appendix())
     1.9      return NULL;
    1.10    const int ref_index = f2_as_index() + _indy_resolved_references_appendix_offset;
    1.11    objArrayOop resolved_references = cpool->resolved_references();
    1.12 @@ -415,7 +415,7 @@
    1.13  
    1.14  
    1.15  oop ConstantPoolCacheEntry::method_type_if_resolved(constantPoolHandle cpool) {
    1.16 -  if (is_f1_null() || !has_method_type())
    1.17 +  if (!has_method_type())
    1.18      return NULL;
    1.19    const int ref_index = f2_as_index() + _indy_resolved_references_method_type_offset;
    1.20    objArrayOop resolved_references = cpool->resolved_references();

mercurial