Skip to content

Commit e4a3d5b

Browse files
committed
Deprecation wording with suggested alternative and without removal hint
See gh-25733 See gh-25736
1 parent 09080bc commit e4a3d5b

File tree

15 files changed

+15
-15
lines changed

15 files changed

+15
-15
lines changed

spring-context/src/main/java/org/springframework/format/datetime/joda/DateTimeFormatterFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
* @see #setStyle
4343
* @see #setIso
4444
* @see DateTimeFormatterFactoryBean
45-
* @deprecated as of 5.3.0, scheduled for removal in 6.0.
45+
* @deprecated as of 5.3, in favor of standard JSR-310 support
4646
*/
4747
@Deprecated
4848
public class DateTimeFormatterFactory {

spring-context/src/main/java/org/springframework/format/datetime/joda/DateTimeFormatterFactoryBean.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* @see #setIso
3434
* @see #setStyle
3535
* @see DateTimeFormatterFactory
36-
* @deprecated as of 5.3.0, scheduled for removal in 6.0.
36+
* @deprecated as of 5.3, in favor of standard JSR-310 support
3737
*/
3838
@Deprecated
3939
public class DateTimeFormatterFactoryBean extends DateTimeFormatterFactory

spring-context/src/main/java/org/springframework/format/datetime/joda/DateTimeParser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
*
3030
* @author Keith Donald
3131
* @since 3.0
32-
* @deprecated as of 5.3.0, scheduled for removal in 6.0.
32+
* @deprecated as of 5.3, in favor of standard JSR-310 support
3333
*/
3434
@Deprecated
3535
public final class DateTimeParser implements Parser<DateTime> {

spring-context/src/main/java/org/springframework/format/datetime/joda/JodaDateTimeFormatAnnotationFormatterFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
* @author Juergen Hoeller
4646
* @since 3.0
4747
* @see DateTimeFormat
48-
* @deprecated as of 5.3.0, scheduled for removal in 6.0.
48+
* @deprecated as of 5.3, in favor of standard JSR-310 support
4949
*/
5050
@Deprecated
5151
public class JodaDateTimeFormatAnnotationFormatterFactory extends EmbeddedValueResolutionSupport

spring-context/src/main/java/org/springframework/format/datetime/joda/JodaTimeContext.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
* @author Keith Donald
3737
* @since 3.0
3838
* @see JodaTimeContextHolder
39-
* @deprecated as of 5.3.0, scheduled for removal in 6.0.
39+
* @deprecated as of 5.3, in favor of standard JSR-310 support
4040
*/
4141
@Deprecated
4242
public class JodaTimeContext {

spring-context/src/main/java/org/springframework/format/datetime/joda/JodaTimeContextHolder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* @author Juergen Hoeller
3232
* @since 3.0
3333
* @see org.springframework.context.i18n.LocaleContextHolder
34-
* @deprecated as of 5.3.0, scheduled for removal in 6.0.
34+
* @deprecated as of 5.3, in favor of standard JSR-310 support
3535
*/
3636
@Deprecated
3737
public final class JodaTimeContextHolder {

spring-context/src/main/java/org/springframework/format/datetime/joda/JodaTimeFormatterRegistrar.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
* @see FormatterRegistrar#registerFormatters
5656
* @see org.springframework.format.datetime.DateFormatterRegistrar
5757
* @see DateTimeFormatterFactoryBean
58-
* @deprecated as of 5.3.0, scheduled for removal in 6.0.
58+
* @deprecated as of 5.3, in favor of standard JSR-310 support
5959
*/
6060
@Deprecated
6161
public class JodaTimeFormatterRegistrar implements FormatterRegistrar {

spring-context/src/main/java/org/springframework/format/datetime/joda/LocalDateParser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
*
3131
* @author Juergen Hoeller
3232
* @since 4.0
33-
* @deprecated as of 5.3.0, scheduled for removal in 6.0.
33+
* @deprecated as of 5.3, in favor of standard JSR-310 support
3434
*/
3535
@Deprecated
3636
public final class LocalDateParser implements Parser<LocalDate> {

spring-context/src/main/java/org/springframework/format/datetime/joda/LocalDateTimeParser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
*
3131
* @author Juergen Hoeller
3232
* @since 4.0
33-
* @deprecated as of 5.3.0, scheduled for removal in 6.0.
33+
* @deprecated as of 5.3, in favor of standard JSR-310 support
3434
*/
3535
@Deprecated
3636
public final class LocalDateTimeParser implements Parser<LocalDateTime> {

spring-context/src/main/java/org/springframework/format/datetime/joda/LocalTimeParser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
*
3131
* @author Juergen Hoeller
3232
* @since 4.0
33-
* @deprecated as of 5.3.0, scheduled for removal in 6.0.
33+
* @deprecated as of 5.3, in favor of standard JSR-310 support
3434
*/
3535
@Deprecated
3636
public final class LocalTimeParser implements Parser<LocalTime> {

spring-context/src/main/java/org/springframework/format/datetime/joda/MillisecondInstantPrinter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
*
2828
* @author Keith Donald
2929
* @since 3.0
30-
* @deprecated as of 5.3.0, scheduled for removal in 6.0.
30+
* @deprecated as of 5.3, in favor of standard JSR-310 support
3131
*/
3232
@Deprecated
3333
public final class MillisecondInstantPrinter implements Printer<Long> {

spring-context/src/main/java/org/springframework/format/datetime/joda/ReadableInstantPrinter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
*
2929
* @author Keith Donald
3030
* @since 3.0
31-
* @deprecated as of 5.3.0, scheduled for removal in 6.0.
31+
* @deprecated as of 5.3, in favor of standard JSR-310 support
3232
*/
3333
@Deprecated
3434
public final class ReadableInstantPrinter implements Printer<ReadableInstant> {

spring-context/src/main/java/org/springframework/format/datetime/joda/ReadablePartialPrinter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
*
2929
* @author Keith Donald
3030
* @since 3.0
31-
* @deprecated as of 5.3.0, scheduled for removal in 6.0.
31+
* @deprecated as of 5.3, in favor of standard JSR-310 support
3232
*/
3333
@Deprecated
3434
public final class ReadablePartialPrinter implements Printer<ReadablePartial> {

spring-webflux/src/main/java/org/springframework/web/reactive/resource/AppCacheManifestTransformer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
* @author Brian Clozel
6666
* @since 5.0
6767
* @see <a href="https://html.spec.whatwg.org/multipage/browsers.html#offline">HTML5 offline applications spec</a>
68-
* @deprecated as of 5.3 since browser support is going away, scheduled for removal in 6.0.
68+
* @deprecated as of 5.3 since browser support is going away
6969
*/
7070
@Deprecated
7171
public class AppCacheManifestTransformer extends ResourceTransformerSupport {

spring-webmvc/src/main/java/org/springframework/web/servlet/resource/AppCacheManifestTransformer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
* @author Brian Clozel
6363
* @since 4.1
6464
* @see <a href="https://html.spec.whatwg.org/multipage/browsers.html#offline">HTML5 offline applications spec</a>
65-
* @deprecated as of 5.3 since browser support is going away, scheduled for removal in 6.0.
65+
* @deprecated as of 5.3 since browser support is going away
6666
*/
6767
@Deprecated
6868
public class AppCacheManifestTransformer extends ResourceTransformerSupport {

0 commit comments

Comments
 (0)