Skip to content

Commit

Permalink
refactor :: 코드 스타일 통일
Browse files Browse the repository at this point in the history
  • Loading branch information
dkflfkd53 committed Aug 27, 2024
1 parent 397fa9c commit ae6d8bf
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Getter;
import lombok.NoArgsConstructor;
import org.springframework.data.annotation.Id;
import org.springframework.data.redis.core.RedisHash;
import org.springframework.data.redis.core.TimeToLive;
Expand All @@ -14,7 +13,6 @@
@Getter
@Builder
@AllArgsConstructor(access = AccessLevel.PRIVATE)
@NoArgsConstructor(access = AccessLevel.PROTECTED)
public class RefreshTokenEntity {
@Id
private String id;
Expand All @@ -30,4 +28,6 @@ enum UserRole {
STUDENT,
TEACHER
}

protected RefreshTokenEntity() {}
}

0 comments on commit ae6d8bf

Please sign in to comment.