This is an automated email from the ASF dual-hosted git repository. lukaszlenart pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/struts.git.
from 269af57 Adds nicer email messages new 03a609c Switchs StrutsException by TypeConversionException in DateConverter, DateConverterTest added for unit testing new a11291d Removes unnecessary import StrutsException new b6586c7 Switches StrutsException by TypeConversionException in NumberConverter; The respective unit tests are added to the NumberConverterTest new a9802a6 Switches StrutsException by TypeConversionException in XWorkBasicConverter; necessary Tests added to XWorkBasicConverterTest new 2453cdb Switchs StrutsException by TypeConversionException in DateConverter, DateConverterTest added for unit testing new ec157c0 Removes unnecessary import StrutsException new 686e069 Switches StrutsException by TypeConversionException in NumberConverter; The respective unit tests are added to the NumberConverterTest new cd9cc53 Switches StrutsException by TypeConversionException in XWorkBasicConverter; necessary Tests added to XWorkBasicConverterTest new 7c92fdd Merge branch 'WW5052-TypeConversionException' of https://github.com/santosr09/struts into WW5052-TypeConversionException new 1ef2985 Corrects formatting defects new 5239aa4 License info added new 2c2b1af Modifies the expected result in DateConverter validation, ignores the TimeZone new 3e0473a Adequates the strings for date formatting due to erros with JDK8 new 9e1a554 Fixes error with Formatting Date when Java is 9 or greater due to the JEP 252 new bf267ad Moves TypeConversionException into org.apache.struts2.conversion new e8ce2c7 Merge pull request #399 from santosr09/WW5052-TypeConversionException The 5859 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. Summary of changes: .../xwork2/conversion/impl/DateConverter.java | 6 +- .../xwork2/conversion/impl/NumberConverter.java | 18 +-- .../conversion/impl/XWorkBasicConverter.java | 16 +-- .../conversion/TypeConversionException.java | 2 +- .../xwork2/conversion/impl/DateConverterTest.java | 118 ++++++++++++++++ .../conversion/impl/NumberConverterTest.java | 156 ++++++++++++++++++++- .../conversion/impl/XWorkBasicConverterTest.java | 90 +++++++++++- 7 files changed, 380 insertions(+), 26 deletions(-) rename core/src/main/java/{com/opensymphony/xwork2 => org/apache/struts2}/conversion/TypeConversionException.java (97%) create mode 100644 core/src/test/java/com/opensymphony/xwork2/conversion/impl/DateConverterTest.java