Skip to content

Commit

Permalink
refactor: AssignmentHistoryRepository 접근 지정자 제거 (#797)
Browse files Browse the repository at this point in the history
refactor: 접근 지정자 제거
  • Loading branch information
Sangwook02 authored Oct 8, 2024
1 parent 98d4681 commit b707e4c
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,5 @@

public interface AssignmentHistoryRepository
extends JpaRepository<AssignmentHistory, Long>, AssignmentHistoryCustomRepository {
// todo: public 제거
public Optional<AssignmentHistory> findByMemberAndStudyDetail(Member member, StudyDetail studyDetail);
Optional<AssignmentHistory> findByMemberAndStudyDetail(Member member, StudyDetail studyDetail);
}

0 comments on commit b707e4c

Please sign in to comment.