Skip to content

Commit 1bdd833

Browse files
committed
Update outdated comments in JdbcOperationsExtensions.kt
1 parent 7a0ea14 commit 1bdd833

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spring-jdbc/src/main/kotlin/org/springframework/jdbc/core/JdbcOperationsExtensions.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ inline fun <reified T> JdbcOperations.queryForObject(sql: String, args: Array<ou
5555
* @since 5.0
5656
*/
5757
@Suppress("DEPRECATION")
58-
// TODO Replace by the vararg variant in Spring Framework 6
58+
// TODO Replace by the vararg variant in Spring Framework 7
5959
inline fun <reified T> JdbcOperations.queryForObject(sql: String, args: Array<out Any>): T? =
6060
queryForObject(sql, args, T::class.java) as T
6161

@@ -89,7 +89,7 @@ inline fun <reified T> JdbcOperations.queryForList(sql: String, args: Array<out
8989
* @since 5.0
9090
*/
9191
@Suppress("DEPRECATION")
92-
// TODO Replace by the vararg variant in Spring Framework 6
92+
// TODO Replace by the vararg variant in Spring Framework 7
9393
inline fun <reified T> JdbcOperations.queryForList(sql: String, args: Array<out Any>): List<T> =
9494
queryForList(sql, args, T::class.java)
9595

0 commit comments

Comments
 (0)