Remove duplicate method from reference docs

Closes gh-681
Issue: SPR-13940
This commit is contained in:
Greg Turnquist
2016-02-11 16:29:21 -06:00
committed by Stephane Nicoll
parent 0dff782402
commit 8cb35197ef

View File

@@ -2918,10 +2918,6 @@ query methods, one for an `int` and one that queries for a `String`.
public String getName() {
return this.jdbcTemplate.queryForObject("select name from mytable", String.class);
}
public void setDataSource(DataSource dataSource) {
this.dataSource = dataSource;
}
}
----