-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
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
refactor: BaseSemesterEntity 수정자 제거 #715
refactor: BaseSemesterEntity 수정자 제거 #715
Conversation
Walkthrough
Changes
Assessment against linked issues
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configuration File (
|
Job Summary for GradleCheck Style and Test to Develop :: build-test
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (1)
- src/main/java/com/gdschongik/gdsc/domain/common/model/BaseSemesterEntity.java (1 hunks)
Additional comments not posted (4)
src/main/java/com/gdschongik/gdsc/domain/common/model/BaseSemesterEntity.java (4)
Line range hint
1-1
: 패키지 선언 확인패키지 선언이 올바르게 되어 있습니다.
패키지 선언이 적절합니다.
Line range hint
3-9
: 필요한 import 문 확인필요한 import 문이 모두 포함되어 있습니다.
import 문이 적절합니다.
Line range hint
11-20
: 클래스 선언 및 어노테이션 확인클래스 선언과 어노테이션이 적절하게 사용되었습니다.
클래스 선언과 어노테이션이 적절합니다.
Line range hint
22-26
: 필드 선언 확인
academicYear
와semesterType
필드가 적절하게 선언되었습니다.필드 선언이 적절합니다.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
🌱 관련 이슈
📌 작업 내용 및 특이사항
📝 참고사항
📚 기타
Summary by CodeRabbit
BaseSemesterEntity
클래스에서updateAcademicYear
및updateSemesterType
메서드가 제거되어, 해당 속성을 직접 수정할 수 없게 되었습니다. 이로 인해 클래스의 불변성이 강화되었습니다.