< prev index next >

src/hotspot/share/oops/arrayKlass.cpp

Print this page

        

*** 108,123 **** int idx = 0; new_str[idx++] = '['; if (element_klass->is_instance_klass()) { // it could be an array or simple type // Temporary hack, for arrays of value types, this code should be removed // once value types have their own array types - if (element_klass->is_value()) { - new_str[idx++] = 'Q'; - } else { new_str[idx++] = 'L'; } - } memcpy(&new_str[idx], name_str, len * sizeof(char)); idx += len; if (element_klass->is_instance_klass()) { new_str[idx++] = ';'; } --- 108,119 ----
< prev index next >