diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/de/fernflower/main/ClassWriter.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/de/fernflower/main/ClassWriter.java b/src/de/fernflower/main/ClassWriter.java index 9f52dda..656a478 100644 --- a/src/de/fernflower/main/ClassWriter.java +++ b/src/de/fernflower/main/ClassWriter.java @@ -838,8 +838,8 @@ public class ClassWriter { bufstrwriter.write(", "); } - if(lstParAnn.size() > i) { - List<AnnotationExprent> annotations = lstParAnn.get(i); + if(lstParAnn.size() > param_count_explicit) { + List<AnnotationExprent> annotations = lstParAnn.get(param_count_explicit); for(int j=0;j<annotations.size();j++) { AnnotationExprent annexpr = annotations.get(j); if(annexpr.getAnnotationType() == AnnotationExprent.ANNOTATION_NORMAL) { |