Constructs a new ClassReader object. @param classFile the JVMS ClassFile structure to be read.
(final byte[] classFile)
| 143 | * @param classFile the JVMS ClassFile structure to be read. |
| 144 | */ |
| 145 | public ClassReader(final byte[] classFile) { |
| 146 | this(classFile, 0, classFile.length); |
| 147 | } |
| 148 | |
| 149 | /** |
| 150 | * Constructs a new {@link ClassReader} object. |
nothing calls this directly
no test coverage detected