Skip to content

Commit

Permalink
[CHORE] static 메서드 형식 통일
Browse files Browse the repository at this point in the history
  • Loading branch information
yeseul106 committed Jan 17, 2024
1 parent ecff2a5 commit 0777bc2
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,9 @@

@Getter
@NoArgsConstructor
@AllArgsConstructor
@AllArgsConstructor(staticName = "of")
public class AuthTokenResponseDto {
private String accessToken;

private String refreshToken;
public static AuthTokenResponseDto of (String accessToken, String refreshToken) {
return new AuthTokenResponseDto(accessToken, refreshToken);
}
}

0 comments on commit 0777bc2

Please sign in to comment.