Remove duplicate method from reference docs

Closes gh-681
Issue: SPR-13940
This commit is contained in:
Greg Turnquist
2016-02-12 09:02:31 +01:00
committed by Stephane Nicoll
parent 0dff782402
commit 8cb35197ef
-4
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;
}
}
----