5758596061626364
return null; } } public void deleteComment(long id) { CommentImpl t_helper = manager.find(CommentImpl.class, id); manager.remove(t_helper); }
6263646566676869
CommentImpl t_helper = manager.find(CommentImpl.class, id); manager.remove(t_helper); } public void deleteComment(Comment comment) { CommentImpl t_helper = manager.find(CommentImpl.class, comment.getCommentID()); manager.remove(t_helper); }