()
| 424 | } |
| 425 | |
| 426 | public FieldId readFieldId() { |
| 427 | int declaringClassIndex = readUnsignedShort(); |
| 428 | int typeIndex = readUnsignedShort(); |
| 429 | int nameIndex = readInt(); |
| 430 | return new FieldId(Dex.this, declaringClassIndex, typeIndex, nameIndex); |
| 431 | } |
| 432 | |
| 433 | public MethodId readMethodId() { |
| 434 | int declaringClassIndex = readUnsignedShort(); |
no test coverage detected