()
| 431 | } |
| 432 | |
| 433 | public MethodId readMethodId() { |
| 434 | int declaringClassIndex = readUnsignedShort(); |
| 435 | int protoIndex = readUnsignedShort(); |
| 436 | int nameIndex = readInt(); |
| 437 | return new MethodId(Dex.this, declaringClassIndex, protoIndex, nameIndex); |
| 438 | } |
| 439 | |
| 440 | public ProtoId readProtoId() { |
| 441 | int shortyIndex = readInt(); |
no test coverage detected