Skip to content

Commit 632d22a

Browse files
author
Thies Wellpott
committed
re-added Java 1.6 compatibility
Signed-off-by: Thies Wellpott <twforen@online.de>
1 parent f9bf17c commit 632d22a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/jsf2/bean/model/impl/AbstractMemberDefinition.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ public abstract class AbstractMemberDefinition implements IAnnotated {
4545
private static final String SPRING_CONTROLLER = "org.springframework.stereotype.Controller";
4646
private static final String SPRING_COMPONENT = "org.springframework.stereotype.Component";
4747

48-
protected List<IAnnotationDeclaration> annotations = new ArrayList<>();
48+
protected List<IAnnotationDeclaration> annotations = new ArrayList<IAnnotationDeclaration>();
4949
protected IAnnotatable member;
50-
protected Map<String, AnnotationDeclaration> annotationsByType = new HashMap<>();
50+
protected Map<String, AnnotationDeclaration> annotationsByType = new HashMap<String, AnnotationDeclaration>();
5151
protected IResource resource;
5252

5353
public AbstractMemberDefinition() {}

0 commit comments

Comments
 (0)