Skip to content

Commit

Permalink
chore: optimize import and remove unused argument
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidHeuckmann committed Dec 20, 2024
1 parent dcc5c40 commit f101674
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/org/demo/service/EmailServiceImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class EmailServiceImpl implements EmailService {

private final EmailRepository emailRepository;

public EmailServiceImpl(EmailRepository emailRepository, EntityManager entityManager) {
public EmailServiceImpl(EmailRepository emailRepository) {
this.emailRepository = emailRepository;
}

Expand Down
1 change: 0 additions & 1 deletion src/test/java/org/demo/EmailServerAppApplicationTests.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.ActiveProfiles;
import org.springframework.test.context.DynamicPropertyRegistry;
import org.springframework.test.context.DynamicPropertySource;
import org.testcontainers.containers.PostgreSQLContainer;
Expand Down

0 comments on commit f101674

Please sign in to comment.