--- original/java/com/opensymphony/webwork/interceptor/ScopeInterceptor.java 2006-03-23 21:32:30.000000000 -0700 +++ fix/java/com/opensymphony/webwork/interceptor/ScopeInterceptor.java 2006-08-16 15:40:54.000000000 -0600 @@ -151,9 +151,9 @@ private String getKey(ActionInvocation invocation) { ActionProxy proxy = invocation.getProxy(); if (key == null || "CLASS".equals(key)) { - key = "webwork.ScopeInterceptor:" + proxy.getAction().getClass(); + return "webwork.ScopeInterceptor:" + proxy.getAction().getClass(); } else if ("ACTION".equals(key)) { - key = "webwork.ScopeInterceptor:" + proxy.getNamespace() + ":" + proxy.getActionName(); + return "webwork.ScopeInterceptor:" + proxy.getNamespace() + ":" + proxy.getActionName(); } return key; }