Skip to content

Commit

Permalink
fix(ActivityPhoto): 코드 미제거로 인한 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
limehee committed Jul 18, 2024
1 parent 194502b commit ad922bb
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,6 @@ public ActivityPhoto save(ActivityPhoto activityPhoto) {
return activityPhotoMapper.toDomain(savedEntity);
}

@Override
public void delete(ActivityPhoto activityPhoto) {
ActivityPhotoJpaEntity entity = activityPhotoMapper.toJpaEntity(activityPhoto);
activityPhotoRepository.delete(entity);
}

@Override
public ActivityPhoto findByIdOrThrow(Long activityPhotoId) {
return activityPhotoRepository.findById(activityPhotoId)
Expand Down

0 comments on commit ad922bb

Please sign in to comment.