hotspot/src/share/vm/oops/arrayKlass.cpp
changeset 8076 96d498ec7ae1
parent 7397 5b173b4ca846
child 8921 14bfe81f2a9d
equal deleted inserted replaced
8075:582dd25571b2 8076:96d498ec7ae1
    62 oop arrayKlass::multi_allocate(int rank, jint* sizes, TRAPS) {
    62 oop arrayKlass::multi_allocate(int rank, jint* sizes, TRAPS) {
    63   ShouldNotReachHere();
    63   ShouldNotReachHere();
    64   return NULL;
    64   return NULL;
    65 }
    65 }
    66 
    66 
    67 methodOop arrayKlass::uncached_lookup_method(symbolOop name, symbolOop signature) const {
    67 methodOop arrayKlass::uncached_lookup_method(Symbol* name, Symbol* signature) const {
    68   // There are no methods in an array klass but the super class (Object) has some
    68   // There are no methods in an array klass but the super class (Object) has some
    69   assert(super(), "super klass must be present");
    69   assert(super(), "super klass must be present");
    70   return Klass::cast(super())->uncached_lookup_method(name, signature);
    70   return Klass::cast(super())->uncached_lookup_method(name, signature);
    71 }
    71 }
    72 
    72