protected void orderItems() {
int idx = 0;
if (items().size() > MAX_MEMBERS) {
String memberType = this instanceof MethodIdsSection ? "methods" : "fields";
throw new DexException("Too many " + memberType + ": " + items().size()
+ "; max is " + MAX_MEMBERS);
}
for (Object i : items()) {
((MemberIdItem) i).setIndex(idx);