382383384385386387388389390391392
return a; } private ConstantPool decodeConstantPool() throws IOException { ConstantPool cpool = new ConstantPool(); int count = reader.readUI16(); cpool.pool = new String[count]; for (int i = 0; i < count; i++) { cpool.pool[i] = reader.readString();