< prev index next >

src/hotspot/share/oops/klass.cpp

Print this page
rev 58768 : 8238358: Implementation of JEP 371: Hidden Classes
Reviewed-by: alanb, cjplummer, coleenp, dholmes, dlong, forax, jlahoda, psandoz, plevart, vromero
Contributed-by: mandy.chung@oracle.com, lois.foltan@oracle.com, david.holmes@oracle.com, harold.seigel@oracle.com, serguei.spitsyn@oracle.com, alex.buckley@oracle.com, jamsheed.c.m@oracle.com, jan.lahoda@oracle.com, amy.lu@oracle.com
rev 58769 : imported patch type-descriptor-name

@@ -721,11 +721,11 @@
     size_t name_len = name()->utf8_length();
     char* result = NEW_RESOURCE_ARRAY(char, name_len + 1);
     name()->as_C_string(result, (int)name_len + 1);
     for (int index = (int)name_len; index > 0; index--) {
       if (result[index] == '+') {
-        result[index] = JVM_SIGNATURE_DOT;
+        result[index] = JVM_SIGNATURE_SLASH;
         break;
       }
     }
     return result;
   }
< prev index next >