fix parsing of object signatures

This commit is contained in:
Volker Berlin 2018-12-02 19:04:37 +01:00
parent fe1e15ee30
commit 8f365d629b

View File

@ -56,7 +56,7 @@ public class ValueTypeParser {
next();
return ValueType.anyref;
case 'L':
idx = sig.indexOf( ';', idx );
idx = sig.indexOf( ';', idx ) + 1;
return ValueType.anyref;
case 'B': // byte
case 'C': // char