Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // DAO
- public void remove(User persistentInstance) {
- log.debug("removing User instance");
- try {
- entityManager.remove(persistentInstance);
- log.debug("remove successful");
- } catch (RuntimeException re) {
- log.error("remove failed", re);
- throw re;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment