We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 17ed041 + 0e82d4d commit c642b80Copy full SHA for c642b80
src/main/java/soot/asm/MethodBuilder.java
@@ -245,7 +245,8 @@ public void visitEnd() {
245
method.addTag(tag);
246
}
247
if (invisibleLocalVarAnnotations != null) {
248
- VisibilityLocalVariableAnnotationTag tag = new VisibilityLocalVariableAnnotationTag(visibleLocalVarAnnotations.size(),
+ VisibilityLocalVariableAnnotationTag tag
249
+ = new VisibilityLocalVariableAnnotationTag(invisibleLocalVarAnnotations.size(),
250
AnnotationConstants.RUNTIME_INVISIBLE);
251
for (VisibilityAnnotationTag vat : invisibleLocalVarAnnotations) {
252
tag.addVisibilityAnnotation(vat);
0 commit comments