Skip to content

Commit b686152

Browse files
committed
chore(community): 불필요한 import 및 public 키워드 제거
1 parent 58038ee commit b686152

File tree

4 files changed

+2
-4
lines changed

4 files changed

+2
-4
lines changed

src/main/java/com/somemore/community/repository/comment/CommunityCommentRepositoryImpl.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
import com.querydsl.jpa.impl.JPAQueryFactory;
44
import com.somemore.community.domain.CommunityComment;
5-
import com.somemore.community.domain.QCommunityBoard;
65
import com.somemore.community.domain.QCommunityComment;
76
import lombok.RequiredArgsConstructor;
87
import org.springframework.stereotype.Repository;

src/main/java/com/somemore/community/usecase/comment/CreateCommunityCommentUseCase.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
package com.somemore.community.usecase.comment;
22

3-
import com.somemore.community.domain.CommunityComment;
43
import com.somemore.community.dto.request.CommunityCommentCreateRequestDto;
54

65
import java.util.UUID;

src/test/java/com/somemore/community/repository/CommunityCommentRepositoryTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import static org.assertj.core.api.Assertions.assertThat;
1313

1414
@Transactional
15-
public class CommunityCommentRepositoryTest extends IntegrationTestSupport {
15+
class CommunityCommentRepositoryTest extends IntegrationTestSupport {
1616
@Autowired
1717
CommunityCommentRepository communityCommentRepository;
1818

src/test/java/com/somemore/community/service/comment/CreateCommunityCommentServiceTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
import static org.assertj.core.api.Assertions.assertThat;
1616

17-
public class CreateCommunityCommentServiceTest extends IntegrationTestSupport {
17+
class CreateCommunityCommentServiceTest extends IntegrationTestSupport {
1818

1919
@Autowired
2020
private CreateCommunityCommentService createCommunityCommentService;

0 commit comments

Comments
 (0)