Skip to content

Commit

Permalink
style: MemberRepository NotNull 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
clean2001 committed Jul 10, 2024
1 parent 62bb2c1 commit c5412d9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
import java.util.Optional;

public interface MemberRepository extends JpaRepository<Member, Long> {
Optional<Member> findBySocialIdAndSocialType(@NotNull String socialId, @NotNull SocialType socialType);
Optional<Member> findBySocialIdAndSocialType(String socialId, SocialType socialType);
}

0 comments on commit c5412d9

Please sign in to comment.