web/src/main/java/org/apache/commons/chain2/web/servlet/ServletApplicationScopeMap.java [108:115]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public Object put(String key, Object value) {
        if (value == null) {
            return (remove(key));
        }
        Object previous = context.getAttribute(key);
        context.setAttribute(key, value);
        return (previous);
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



web/src/main/java/org/apache/commons/chain2/web/portlet/PortletApplicationScopeMap.java [105:112]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public Object put(String key, Object value) {
        if (value == null) {
            return (remove(key));
        }
        Object previous = context.getAttribute(key);
        context.setAttribute(key, value);
        return (previous);
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



