Replace javadoc references to deprecated query methods

See gh-25272
This commit is contained in:
Juergen Hoeller 2020-07-19 18:59:26 +02:00
parent 6317bc2262
commit 4f2aaa49a9
1 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
/*
* Copyright 2002-2018 the original author or authors.
* Copyright 2002-2020 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -31,9 +31,9 @@ import org.springframework.lang.Nullable;
* @author Juergen Hoeller
* @since 2.0.5
* @see java.sql.Types
* @see JdbcTemplate#query(String, Object[], ResultSetExtractor)
* @see JdbcTemplate#query(String, Object[], RowCallbackHandler)
* @see JdbcTemplate#query(String, Object[], RowMapper)
* @see JdbcTemplate#query(String, ResultSetExtractor, Object[])
* @see JdbcTemplate#query(String, RowCallbackHandler, Object[])
* @see JdbcTemplate#query(String, RowMapper, Object[])
* @see JdbcTemplate#update(String, Object[])
*/
public class SqlParameterValue extends SqlParameter {