676869707172737475
*/ public ConstantPoolParser(ByteArray bytes) { int size = bytes.getUnsignedShort(8); // constant_pool_count this.bytes = bytes; this.pool = new StdConstantPool(size); this.offsets = new int[size]; this.endOffset = -1; }