Skip to content

Commit

Permalink
re-added Java 1.6 compatibility
Browse files Browse the repository at this point in the history
Signed-off-by: Thies Wellpott <[email protected]>
  • Loading branch information
Thies Wellpott committed May 9, 2022
1 parent fcba4d8 commit aae582d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ public abstract class AbstractMemberDefinition implements IAnnotated {
private static final String SPRING_CONTROLLER = "org.springframework.stereotype.Controller";
private static final String SPRING_COMPONENT = "org.springframework.stereotype.Component";

protected List<IAnnotationDeclaration> annotations = new ArrayList<>();
protected List<IAnnotationDeclaration> annotations = new ArrayList<IAnnotationDeclaration>();
protected IAnnotatable member;
protected Map<String, AnnotationDeclaration> annotationsByType = new HashMap<>();
protected Map<String, AnnotationDeclaration> annotationsByType = new HashMap<String, AnnotationDeclaration>();
protected IResource resource;

public AbstractMemberDefinition() {}
Expand Down

0 comments on commit aae582d

Please sign in to comment.