(T object)
| 349 | } |
| 350 | |
| 351 | public void delete(T object) { |
| 352 | try { |
| 353 | getDao().delete(object); |
| 354 | } catch (SQLException e) { |
| 355 | logger.l1("SQL Exception in delete", e); |
| 356 | logger.l1(MessageFormat.format("we worked with {0}", object)); |
| 357 | } |
| 358 | } |
| 359 | |
| 360 | public void update(String field, Object value, Object... args) { |
| 361 | try { |
nothing calls this directly
no test coverage detected