yang created WW-4321:
------------------------
Summary: ActionConfig constructor lost one properties
Key: WW-4321
URL: https://issues.apache.org/jira/browse/WW-4321
Project: Struts 2
Issue Type: Bug
Components: Dispatch Filter
Affects Versions: 2.3.x
Reporter: yang
16 package com.opensymphony.xwork2.config.entities
... ...
49 public class ActionConfig extends Located implements Serializable {
... ...
75 /**
76 * Clones an ActionConfig, copying data into new maps and lists
77 * @param orig The ActionConfig to clone
78 * @Since 2.1
79 */
80 protected ActionConfig(ActionConfig orig) {
... ...
89 this.allowedMethods = new HashSet<String>(orig.allowedMethods);
lost super.location = orig.location;
90 }
********************************************************
ActionConfig constructor lost Located properties "location" value copy.
--
This message was sent by Atlassian JIRA
(v6.2#6252)