correct array type display is ir

--HG--
branch : 2.x
This commit is contained in:
Bob Pan 2014-12-07 02:16:13 +08:00
parent 3a3a1e90e7
commit fd927793a7

View File

@ -142,8 +142,7 @@ public class Util {
break;
}
}
int i = desc.lastIndexOf('/');
StringBuilder sb = new StringBuilder().append(desc.substring(i < 0 ? d : i + 1, desc.length() - 1));
StringBuilder sb = new StringBuilder().append(toShortClassName(desc.substring(d)));
for (int t = 0; t < d; t++) {
sb.append("[]");
}