373839404142434445
@SuppressWarnings("rawtypes") public void delete(final Entity<?> e) { try { this.entityManager.remove(e); } catch (IllegalArgumentException ex) { Entity tmp = this.entityManager.find(e.getClass(), e.getId()); this.entityManager.remove(tmp); } }