All pastes #2466960 Raw Edit

Miscellany

public unlisted java v1 · immutable
#2466960 ·published 2013-10-15 15:36 UTC
rendered paste body
        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;             }        }