Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
git-svn-id: http://anonsvn.jboss.org/repos/weld/ri/trunk@485 1c488680-804c-0410-94cd-c6b725194a0e
  • Loading branch information
pmuir committed Dec 8, 2008
1 parent cef7009 commit 03e8241
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions webbeans-ri/src/main/java/org/jboss/webbeans/FacadeImpl.java
Expand Up @@ -45,13 +45,13 @@ public abstract class FacadeImpl<T>
* Constructor
*
* @param manager The Web Beans manager
* @param eventType The event type
* @param type The event type
* @param bindingTypes The binding types
*/
protected FacadeImpl(ManagerImpl manager, Class<T> eventType, Annotation... bindingTypes)
protected FacadeImpl(ManagerImpl manager, Class<T> type, Annotation... bindingTypes)
{
this.manager = manager;
this.type = eventType;
this.type = type;
this.bindingTypes = mergeBindingTypes(new HashSet<Annotation>(), bindingTypes);
}

Expand Down

0 comments on commit 03e8241

Please sign in to comment.