@@ -100,7 +100,7 @@ public static void main(String[] args) throws Exception {
100
100
private static class DefaultCodeFormatterManipulator extends ClassVisitor {
101
101
102
102
DefaultCodeFormatterManipulator (ClassVisitor visitor ) {
103
- super (Opcodes .ASM5 , visitor );
103
+ super (Opcodes .ASM7 , visitor );
104
104
}
105
105
106
106
@ Override
@@ -129,7 +129,7 @@ public MethodVisitor visitMethod(int access, String name, String desc, String si
129
129
private static class DefaultCodeFormatterMethodManipulator extends MethodVisitor {
130
130
131
131
DefaultCodeFormatterMethodManipulator (MethodVisitor mv ) {
132
- super (Opcodes .ASM5 , mv );
132
+ super (Opcodes .ASM7 , mv );
133
133
}
134
134
135
135
@ Override
@@ -143,13 +143,13 @@ public void visitMethodInsn(int opcode, String owner, String name, String desc,
143
143
}
144
144
145
145
/**
146
- * {@link ClassVisitor} to update the {@code NLS} class so it doesn't use a System
147
- * property to disable warning messages.
146
+ * {@link ClassVisitor} to update the {@code NLS} class so it doesn't use a
147
+ * System property to disable warning messages.
148
148
*/
149
149
private static class NlsManipulator extends ClassVisitor {
150
150
151
151
NlsManipulator (ClassVisitor visitor ) {
152
- super (Opcodes .ASM5 , visitor );
152
+ super (Opcodes .ASM7 , visitor );
153
153
}
154
154
155
155
@ Override
@@ -163,15 +163,15 @@ public MethodVisitor visitMethod(int access, String name, String desc, String si
163
163
}
164
164
165
165
/**
166
- * {@link MethodVisitor} to update the {@code NLS} class so it doesn't use a System
167
- * property to disable warning messages.
166
+ * {@link MethodVisitor} to update the {@code NLS} class so it doesn't use a
167
+ * System property to disable warning messages.
168
168
*/
169
169
private static class NslMethodManipulator extends MethodVisitor {
170
170
171
171
private final MethodVisitor methodVisitor ;
172
172
173
173
NslMethodManipulator (MethodVisitor mv ) {
174
- super (Opcodes .ASM5 , null );
174
+ super (Opcodes .ASM7 , null );
175
175
this .methodVisitor = mv ;
176
176
}
177
177
0 commit comments