< prev index next >

src/jdk.jdi/share/classes/com/sun/tools/jdi/JNITypeParser.java

Print this page

        

*** 154,163 **** --- 154,164 ---- switch(key) { case (JDWP.Tag.ARRAY): return key + nextSignature(); case (JDWP.Tag.OBJECT): + case (JDWP.Tag.INLINE_OBJECT): int endClass = signature.indexOf(SIGNATURE_ENDCLASS, currentIndex); String retVal = signature.substring(currentIndex - 1, endClass + 1); currentIndex = endClass + 1;
*** 197,206 **** --- 198,208 ---- case (JDWP.Tag.CHAR): return "char"; case (JDWP.Tag.OBJECT): + case (JDWP.Tag.INLINE_OBJECT): int endClass = signature.indexOf(SIGNATURE_ENDCLASS, currentIndex); String retVal = signature.substring(currentIndex, endClass); retVal = retVal.replace('/','.');
< prev index next >