Creates a new dex that reads from data. It is an error to modify data after using it to create a dex buffer.
(byte[] data)
| 72 | * {@code data} after using it to create a dex buffer. |
| 73 | */ |
| 74 | public Dex(byte[] data) throws IOException { |
| 75 | this(ByteBuffer.wrap(data)); |
| 76 | } |
| 77 | |
| 78 | private Dex(ByteBuffer data) throws IOException { |
| 79 | this.data = data; |
nothing calls this directly
no test coverage detected