Remove mentions of Joda-Time support

Since Joda-Time support was removed in Spring Framework 6.0, this commit
removes obsolete mentions of Joda-Time in the reference guide and Javadoc.

See gh-27426
Closes gh-33881
This commit is contained in:
Sam Brannen
2024-11-13 14:16:14 +01:00
parent 0a5bd89129
commit 4d792d0e45
14 changed files with 49 additions and 67 deletions

View File

@@ -239,8 +239,8 @@ public abstract class JdbcUtils {
}
}
// Corresponding SQL types for JSR-310 / Joda-Time types, left up
// to the caller to convert them (e.g. through a ConversionService).
// Corresponding SQL types for JSR-310, left up to the caller to convert
// them (for example, through a ConversionService).
String typeName = requiredType.getSimpleName();
return switch (typeName) {
case "LocalDate" -> rs.getDate(index);