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@1372 1c488680-804c-0410-94cd-c6b725194a0e
  • Loading branch information
pmuir committed Jan 31, 2009
1 parent 4da5764 commit c01ac6e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 135 deletions.
Expand Up @@ -120,7 +120,6 @@ public class ManagerImpl implements Manager, Serializable
private transient final Set<Interceptor> interceptors;

// The EJB resolver provided by the container
// TODO This can't be transient!
private transient final EjbResolver ejbResolver;

private transient final EjbDescriptorCache ejbDescriptorCache;
Expand Down
Expand Up @@ -246,16 +246,6 @@ public void destroy(T instance)
}
}



/**
* Injects EJBs and common fields
*/
protected void injectEjbAndCommonFields()
{
// TODO Support commons and EJB annotations
}

/**
* Validates the bean type
*/
Expand Down Expand Up @@ -305,7 +295,6 @@ public void postConstruct(T instance)
DependentContext.INSTANCE.setActive(true);
bindDecorators();
bindInterceptors();
injectEjbAndCommonFields();
injectBoundFields(instance, creationalContext);
callInitializers(instance, creationalContext);
}
Expand Down

This file was deleted.

Expand Up @@ -98,7 +98,10 @@ private void add(Type type)
classes.add(clazz);
}
}
// TODO what about non-Class types
else
{
throw new IllegalArgumentException("Cannot proxy non-Class Type " + type);
}
}

public static TypeInfo ofTypes(Set<Type> types)
Expand Down

0 comments on commit c01ac6e

Please sign in to comment.