Merge pull request #961 from gregturn/SPR-13940

* pr/961:
  Remove duplicate method from reference docs
This commit is contained in:
Stephane Nicoll 2016-02-12 09:03:14 +01:00
commit 268ebd7e89
1 changed files with 0 additions and 4 deletions

View File

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