Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
pmuir committed Nov 7, 2009
1 parent ff24959 commit b8e85de
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions impl/src/main/java/org/jboss/weld/bean/InterceptorImpl.java
Expand Up @@ -18,8 +18,8 @@
package org.jboss.weld.bean;

import java.lang.annotation.Annotation;
import java.util.Set;
import java.util.HashSet;
import java.util.Set;

import javax.enterprise.inject.spi.InterceptionType;
import javax.enterprise.inject.spi.Interceptor;
Expand All @@ -30,8 +30,8 @@
import org.jboss.interceptor.registry.InterceptorClassMetadataRegistry;
import org.jboss.weld.BeanManagerImpl;
import org.jboss.weld.DeploymentException;
import org.jboss.weld.util.Beans;
import org.jboss.weld.introspector.WeldClass;
import org.jboss.weld.util.Beans;

/**
* @author Marius Bogoevici
Expand Down Expand Up @@ -64,7 +64,7 @@ protected InterceptorImpl(WeldClass<T> type, BeanManagerImpl manager)

public static <T> InterceptorImpl<T> of(WeldClass<T> type, BeanManagerImpl manager)
{
return new InterceptorImpl(type, manager);
return new InterceptorImpl<T>(type, manager);
}

public Set<Annotation> getInterceptorBindings()
Expand Down

0 comments on commit b8e85de

Please sign in to comment.