< prev index next >

src/hotspot/share/classfile/classFileParser.hpp

Print this page

        

@@ -462,15 +462,10 @@
   bool valid_klass_reference_at(int index) const {
     return _cp->is_within_bounds(index) &&
              _cp->tag_at(index).is_klass_or_reference();
   }
 
-  bool valid_value_type_reference_at(int index) const {
-    return _cp->is_within_bounds(index) &&
-             _cp->tag_at(index).is_value_type_or_reference();
-  }
-
   // Checks that the cpool index is in range and is a utf8
   bool valid_symbol_at(int cpool_index) const {
     return _cp->is_within_bounds(cpool_index) &&
              _cp->tag_at(cpool_index).is_utf8();
   }
< prev index next >