Miscellany
public unlisted java v1 · immutable public boolean deleteBox(Long id){ Boxes box = new Boxes(); box = entityManager.find(Boxes.class, id); entityManager.remove(box); if(box==null){ return true; }else{ return false; } }