We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
상위 에픽이 null이면 반환을 해줘야 하는데 getStories로 접근하면서 NullPointerException 발생
public void updateStory(IssueEditRequest request, Member assignee, Epic upEpic) { super.updateIssue(request, assignee); this.startDate = request.getStartDate(); this.endDate = request.getEndDate(); if (this.epic != null) { this.epic.getStories().remove(this); } //TODO: upEpic이 null이면 에러 발생 this.epic = upEpic; upEpic.getStories().add(this); }
No response
OS: macOS
The text was updated successfully, but these errors were encountered:
#79 도 같이 진행
Sorry, something went wrong.
[#83] 이슈 수정 버그 해결 assignee dto image URL 추가 (#84)
a733e59
* bug: upStory, upEpic 없을때 조회하면서 생기는 null 익셉션 해결 * refactor: assignee dto에 kakao image url 추가 * refactor: issue의 member_id를 assignee_id로 칼럼명 변경 * refactor: 스키마 수정(issue 칼럼명 변경) * refactor: 스키마 수정(issue 칼럼명 변경) * refactor: 칼럼명 복구
minsang-alt
Successfully merging a pull request may close this issue.
🐞 Describe
상위 에픽이 null이면 반환을 해줘야 하는데 getStories로 접근하면서 NullPointerException 발생
📄 Logs
No response
🌏 Environment
OS: macOS
🙋🏻 More
No response
The text was updated successfully, but these errors were encountered: