From dc0fb9abd898336d3da51aed799defe2ea4dfce4 Mon Sep 17 00:00:00 2001 From: michaelisvy <misvy@gopivotal,com> Date: Wed, 17 Jun 2015 13:10:00 -0500 Subject: [PATCH] removing unused method #85 --- .../petclinic/repository/jdbc/JdbcVisitRepositoryImpl.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/main/java/org/springframework/samples/petclinic/repository/jdbc/JdbcVisitRepositoryImpl.java b/src/main/java/org/springframework/samples/petclinic/repository/jdbc/JdbcVisitRepositoryImpl.java index 1921057..a923b76 100644 --- a/src/main/java/org/springframework/samples/petclinic/repository/jdbc/JdbcVisitRepositoryImpl.java +++ b/src/main/java/org/springframework/samples/petclinic/repository/jdbc/JdbcVisitRepositoryImpl.java @@ -66,10 +66,6 @@ public class JdbcVisitRepositoryImpl implements VisitRepository { } } - public void deletePet(int id) throws DataAccessException { - this.jdbcTemplate.update("DELETE FROM pets WHERE id=?", id); - } - /** * Creates a {@link MapSqlParameterSource} based on data values from the supplied {@link Visit} instance. -- GitLab