You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by lu...@apache.org on 2018/09/04 05:28:06 UTC

[struts] branch WW-4954-struts-2-5 created (now f523a34)

This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a change to branch WW-4954-struts-2-5
in repository https://gitbox.apache.org/repos/asf/struts.git.


      at f523a34  WW-4954 Moves XWorkList out of util package

This branch includes the following new commits:

     new f523a34  WW-4954 Moves XWorkList out of util package

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[struts] 01/01: WW-4954 Moves XWorkList out of util package

Posted by lu...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a commit to branch WW-4954-struts-2-5
in repository https://gitbox.apache.org/repos/asf/struts.git

commit f523a341d474eddbc6c941ddbb1d843c743603ca
Author: Lukasz Lenart <lu...@apache.org>
AuthorDate: Thu Aug 30 08:39:11 2018 +0200

    WW-4954 Moves XWorkList out of util package
---
 .../com/opensymphony/xwork2/conversion/impl/CollectionConverter.java   | 1 -
 .../com/opensymphony/xwork2/{util => conversion/impl}/XWorkList.java   | 3 +--
 .../opensymphony/xwork2/{util => conversion/impl}/XWorkListTest.java   | 2 +-
 3 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/core/src/main/java/com/opensymphony/xwork2/conversion/impl/CollectionConverter.java b/core/src/main/java/com/opensymphony/xwork2/conversion/impl/CollectionConverter.java
index 730e4af..b7f707f 100644
--- a/core/src/main/java/com/opensymphony/xwork2/conversion/impl/CollectionConverter.java
+++ b/core/src/main/java/com/opensymphony/xwork2/conversion/impl/CollectionConverter.java
@@ -21,7 +21,6 @@ package com.opensymphony.xwork2.conversion.impl;
 import com.opensymphony.xwork2.conversion.ObjectTypeDeterminer;
 import com.opensymphony.xwork2.conversion.TypeConverter;
 import com.opensymphony.xwork2.inject.Inject;
-import com.opensymphony.xwork2.util.XWorkList;
 
 import java.lang.reflect.Member;
 import java.util.Collection;
diff --git a/core/src/main/java/com/opensymphony/xwork2/util/XWorkList.java b/core/src/main/java/com/opensymphony/xwork2/conversion/impl/XWorkList.java
similarity index 98%
rename from core/src/main/java/com/opensymphony/xwork2/util/XWorkList.java
rename to core/src/main/java/com/opensymphony/xwork2/conversion/impl/XWorkList.java
index 666ff5f..38da102 100644
--- a/core/src/main/java/com/opensymphony/xwork2/util/XWorkList.java
+++ b/core/src/main/java/com/opensymphony/xwork2/conversion/impl/XWorkList.java
@@ -16,13 +16,12 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-package com.opensymphony.xwork2.util;
+package com.opensymphony.xwork2.conversion.impl;
 
 import com.opensymphony.xwork2.ActionContext;
 import com.opensymphony.xwork2.ObjectFactory;
 import com.opensymphony.xwork2.XWorkException;
 import com.opensymphony.xwork2.conversion.TypeConverter;
-import com.opensymphony.xwork2.conversion.impl.XWorkConverter;
 import org.apache.logging.log4j.LogManager;
 import org.apache.logging.log4j.Logger;
 
diff --git a/core/src/test/java/com/opensymphony/xwork2/util/XWorkListTest.java b/core/src/test/java/com/opensymphony/xwork2/conversion/impl/XWorkListTest.java
similarity index 98%
rename from core/src/test/java/com/opensymphony/xwork2/util/XWorkListTest.java
rename to core/src/test/java/com/opensymphony/xwork2/conversion/impl/XWorkListTest.java
index 21c8f03..a94d63c 100644
--- a/core/src/test/java/com/opensymphony/xwork2/util/XWorkListTest.java
+++ b/core/src/test/java/com/opensymphony/xwork2/conversion/impl/XWorkListTest.java
@@ -16,7 +16,7 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-package com.opensymphony.xwork2.util;
+package com.opensymphony.xwork2.conversion.impl;
 
 import com.opensymphony.xwork2.XWorkTestCase;