mirror of
https://github.com/apache/struts.git
synced 2026-08-11 01:27:14 +00:00
Changed dummy null object to be serializable
WW-1621 git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/trunk@495097 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -23,6 +23,8 @@ package org.apache.struts2.interceptor;
|
||||
import java.util.IdentityHashMap;
|
||||
import java.util.Map;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
import org.apache.struts2.ServletActionContext;
|
||||
@@ -201,7 +203,7 @@ public class ScopeInterceptor extends AbstractInterceptor implements PreResultLi
|
||||
}
|
||||
|
||||
|
||||
private static final Object NULL = new Object() {
|
||||
private static final Object NULL = new Serializable() {
|
||||
public String toString() {
|
||||
return "NULL";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user