Skip to content

Commit

Permalink
style : spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
BlackBean99 committed Jul 23, 2023
1 parent a33a92d commit d8e79c4
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
import org.springframework.boot.context.event.ApplicationReadyEvent;
import org.springframework.context.ApplicationListener;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.core.env.Environment;
import org.springframework.web.filter.ForwardedHeaderFilter;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package com.econovation.idpapi.common.handler;

import static org.springframework.transaction.annotation.Propagation.REQUIRES_NEW;

import com.econovation.idpapi.application.port.out.LoadAccountPort;
import com.econovation.idpapi.application.service.ConfirmationTokenService;
Expand All @@ -10,7 +9,6 @@
import lombok.extern.slf4j.Slf4j;
import org.springframework.scheduling.annotation.Async;
import org.springframework.stereotype.Component;
import org.springframework.transaction.annotation.Transactional;
import org.springframework.transaction.event.TransactionPhase;
import org.springframework.transaction.event.TransactionalEventListener;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,10 @@

import com.econovation.idpapi.supports.ApiIntegrateSpringBootTest;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;

@ApiIntegrateSpringBootTest
class IdpApiApplicationTests {

@Test
void contextLoads() {}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,8 @@ public class Account extends BaseTimeEntity {
private AccountRole accountRole = AccountRole.GUEST;

// 이메일 수신 여부
@Builder.Default
private Boolean receiveMail = Boolean.FALSE;
@Builder.Default
private LocalDateTime lastLoginAt = LocalDateTime.now();
@Builder.Default private Boolean receiveMail = Boolean.FALSE;
@Builder.Default private LocalDateTime lastLoginAt = LocalDateTime.now();

@PostPersist
public void registerEvent() {
Expand Down

0 comments on commit d8e79c4

Please sign in to comment.