(Dex dex)
| 69 | } |
| 70 | |
| 71 | public void readFrom(Dex dex) throws IOException { |
| 72 | readHeader(dex.open(0)); |
| 73 | readMap(dex.open(mapList.off)); |
| 74 | computeSizesFromOffsets(); |
| 75 | } |
| 76 | |
| 77 | private void readHeader(Dex.Section headerIn) throws UnsupportedEncodingException { |
| 78 | byte[] magic = headerIn.readByteArray(8); |
no test coverage detected