Skip to content

test: gemini 리뷰 테스트 #154

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

Merged
merged 1 commit into from
Apr 21, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
@NoArgsConstructor(access = AccessLevel.PROTECTED)
@AllArgsConstructor(access = AccessLevel.PROTECTED)
public class Notice extends BaseEntity {
// 관리자 공지사항

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

해당 라인에 추가된 주석 "// 관리자 공지사항"은 코드의 기능이나 동작 방식에 대한 설명이 부족합니다. 더 구체적인 설명이 필요합니다. 예를 들어, 어떤 종류의 관리자 공지사항인지, 어떤 목적으로 사용되는지 등을 명시해야 합니다. 또한, 영어 주석을 사용하는 것이 좋을 것 같습니다. (e.g., // Admin Notice for ...). 단순히 Notice 클래스임을 알 수 있는 주석은 불필요할 수 있습니다. 더 자세한 내용이 없으면 제거하는 것이 나을 수도 있습니다.

private String title;
private String content;
}
Loading