Skip to content

Commit

Permalink
#18 [Update] 코드 리팩토링
Browse files Browse the repository at this point in the history
필요없는 어노테이션 삭제
  • Loading branch information
Anna-Jin committed Jul 23, 2022
1 parent 8abb455 commit 3195625
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,5 @@

import java.util.List;

@Repository
public interface StoreRepository extends JpaRepository<Store, Integer> {
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,5 @@
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;

@Repository
public interface UserRegisterStoreImgRepository extends JpaRepository<UserRegisterStoreImg, Integer> {
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;

@Repository
public interface UserRepository extends JpaRepository<User, Integer> {
User findBySocialId(String socialId);

Expand Down

0 comments on commit 3195625

Please sign in to comment.