Skip to content

Commit

Permalink
[JT-73] chore: 불필요한 코드 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
kmebin committed Sep 22, 2023
1 parent d099455 commit 1af0c34
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,13 +82,6 @@ private Member(String email, String password, String name, String nickname, Gend
this.loginType = loginType;
}

public static Member createOfId(Long memberId) {
Member member = new Member();
member.id = memberId;

return member;
}

public void updateLastLogin() {
lastLoginDate = LocalDateTime.now();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,13 +79,6 @@ private Episode(
this.webtoon = requireNonNull(webtoon, WEBTOON_IS_NULL.getMessage());
}

public static Episode createOfId(Long episodeId) {
Episode episode = new Episode();
episode.id = episodeId;

return episode;
}

public int getCookieCount() {
return webtoon.getCookieCount();
}
Expand Down
1 change: 1 addition & 0 deletions module-internal/s3-client/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
dependencies {
// S3
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation platform("io.awspring.cloud:spring-cloud-aws-dependencies:3.0.2")
implementation 'io.awspring.cloud:spring-cloud-aws-starter-s3'
Expand Down

0 comments on commit 1af0c34

Please sign in to comment.