Skip to content

Commit

Permalink
[#535] Fix the issue
Browse files Browse the repository at this point in the history
  • Loading branch information
pnatashap committed Feb 10, 2024
1 parent d9da1b3 commit c21d383
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/jpeek/skeleton/XmlClass.java
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ final class XmlClass extends ClassVisitor implements Iterable<Directive> {
* @param src The source
*/
XmlClass(final CtClass src) {
super(Opcodes.ASM7);
super(Opcodes.ASM9);
this.source = src;
this.attrs = new Directives();
this.methods = new LinkedList<>();
Expand Down

0 comments on commit c21d383

Please sign in to comment.