actually delegate from resolveContextualObject to resolveReference

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@313 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
Juergen Hoeller
2008-11-20 19:46:28 +00:00
parent e6f75f212d
commit 56e86e533a
3 changed files with 10 additions and 4 deletions
@@ -64,7 +64,8 @@ public abstract class AbstractRequestAttributesScope implements Scope {
}
public Object resolveContextualObject(String key) {
return null;
RequestAttributes attributes = RequestContextHolder.currentRequestAttributes();
return attributes.resolveReference(key);
}