mirror of
https://github.com/moparisthebest/fernflower
synced 2024-11-23 09:42:18 -05:00
method parameter annotations fixed
(annotations table doesn't count implicit parameters)
This commit is contained in:
parent
25bd28a290
commit
5c8ad60f12
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user