@ -14,7 +14,7 @@
@@ -14,7 +14,7 @@
* limitations under the License .
* /
package org.springframework.ui. format.support ;
package org.springframework.format.support ;
import static org.junit.Assert.assertEquals ;
@ -31,11 +31,12 @@ import org.junit.Test;
@@ -31,11 +31,12 @@ import org.junit.Test;
import org.springframework.context.i18n.LocaleContextHolder ;
import org.springframework.core.convert.TypeDescriptor ;
import org.springframework.core.convert.converter.Converter ;
import org.springframework.ui.format.annotation.DateTimeFormat.Style ;
import org.springframework.ui.format.jodatime.DateTimeFormatAnnotationFormatterFactory ;
import org.springframework.ui.format.jodatime.DateTimeParser ;
import org.springframework.ui.format.jodatime.ReadablePartialPrinter ;
import org.springframework.ui.format.number.IntegerFormatter ;
import org.springframework.format.annotation.DateTimeFormat.Style ;
import org.springframework.format.datetime.joda.DateTimeFormatAnnotationFormatterFactory ;
import org.springframework.format.datetime.joda.DateTimeParser ;
import org.springframework.format.datetime.joda.ReadablePartialPrinter ;
import org.springframework.format.number.IntegerFormatter ;
import org.springframework.format.support.FormattingConversionService ;
/ * *
* @author Keith Donald
@ -105,7 +106,7 @@ public class FormattingConversionServiceTests {
@@ -105,7 +106,7 @@ public class FormattingConversionServiceTests {
private static class Model {
@SuppressWarnings ( "unused" )
@org.springframework.ui. format.annotation.DateTimeFormat ( dateStyle = Style . SHORT )
@org.springframework.format.annotation.DateTimeFormat ( dateStyle = Style . SHORT )
public Date date ;
}