mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 03:21:12 +07:00
there's no need to use <? extends String>, because String is final
sometimes it's necessary, e.g. when we're substituting any generic with the real type GitOrigin-RevId: a8c453813b04213f7e24dd80bc7ccec4eb78efcb
This commit is contained in:
committed by
intellij-monorepo-bot
parent
01f2bf419b
commit
9d823ad5dd
@@ -17,10 +17,10 @@ public class AnnotationExprent extends Exprent {
|
||||
public static final int ANNOTATION_SINGLE_ELEMENT = 3;
|
||||
|
||||
private final String className;
|
||||
private final List<? extends String> parNames;
|
||||
private final List<String> parNames;
|
||||
private final List<? extends Exprent> parValues;
|
||||
|
||||
public AnnotationExprent(String className, List<? extends String> parNames, List<? extends Exprent> parValues) {
|
||||
public AnnotationExprent(String className, List<String> parNames, List<? extends Exprent> parValues) {
|
||||
super(EXPRENT_ANNOTATION);
|
||||
this.className = className;
|
||||
this.parNames = parNames;
|
||||
|
||||
Reference in New Issue
Block a user