Skip to content

Commit

Permalink
WELD-1970 There is nothing like required services in 2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mkouba authored and jharting committed Aug 17, 2015
1 parent 111d418 commit 7251e77
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -42,8 +42,8 @@ public boolean associate(HttpServletRequest request) {
ContextLogger.LOG.beanStoreLeakDuringAssociation(this.getClass().getName(), request);
}
// We always associate a new bean store to avoid possible leaks (security threats)
setBeanStore(new LazySessionBeanStore(request, namingScheme, getServiceRegistry().getRequired(WeldConfiguration.class).getBooleanProperty(
ConfigurationKey.CONTEXT_ATTRIBUTES_LAZY_FETCH)));
setBeanStore(new LazySessionBeanStore(request, namingScheme,
getServiceRegistry().get(WeldConfiguration.class).getBooleanProperty(ConfigurationKey.CONTEXT_ATTRIBUTES_LAZY_FETCH)));
checkBeanIdentifierIndexConsistency(request);
return true;
}
Expand Down

0 comments on commit 7251e77

Please sign in to comment.