Skip to content

Commit

Permalink
Ngh. Enterprise bean api types not initalized at same point as elsewhere
Browse files Browse the repository at this point in the history
git-svn-id: http://anonsvn.jboss.org/repos/weld/ri/trunk@979 1c488680-804c-0410-94cd-c6b725194a0e
  • Loading branch information
nickarls committed Jan 15, 2009
1 parent 32d128e commit 2621f5e
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -140,7 +140,8 @@ protected void init()
checkDeploymentType();
initScopeType();
initTypes();
proxyable = Proxies.apiTypesAreProxyable(getTypes());
// TODO: hack due to types not initialized!
proxyable = getTypes() == null ? true : Proxies.apiTypesAreProxyable(getTypes());
}

/**
Expand Down

0 comments on commit 2621f5e

Please sign in to comment.