Skip to content

Commit

Permalink
Remove collection, which is updated, but never queried
Browse files Browse the repository at this point in the history
  • Loading branch information
dk2k committed Aug 19, 2024
1 parent 4791fec commit 51559ec
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions impl/src/main/java/org/jboss/weld/bean/DecoratorImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ public static <T> DecoratorImpl<T> of(BeanAttributes<T> attributes, EnhancedAnno
private WeldInjectionPointAttributes<?, ?> delegateInjectionPoint;
private Set<Annotation> delegateBindings;
private Type delegateType;
private Set<Type> delegateTypes;
private Set<Type> decoratedTypes;

protected DecoratorImpl(BeanAttributes<T> attributes, EnhancedAnnotatedType<T> type, BeanManagerImpl beanManager) {
Expand Down Expand Up @@ -90,8 +89,6 @@ protected void initDelegateBindings() {

protected void initDelegateType() {
this.delegateType = this.delegateInjectionPoint.getType();
this.delegateTypes = new HashSet<Type>();
delegateTypes.add(delegateType);
}

@Override
Expand Down

0 comments on commit 51559ec

Please sign in to comment.