Skip to content

Commit

Permalink
refactor: 불필요한 메서드 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
ymkim97 committed Nov 1, 2023
1 parent a0bacae commit b2fddfb
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
package com.moabam.api.domain.repository;

import java.util.Optional;

import org.springframework.data.jpa.repository.JpaRepository;

import com.moabam.api.domain.entity.Participant;

public interface ParticipantRepository extends JpaRepository<Participant, Long> {

Optional<Participant> findParticipantByRoomIdAndMemberId(Long roomId, Long memberId);
}

0 comments on commit b2fddfb

Please sign in to comment.