Skip to content

Commit

Permalink
refactor: 불필요한 어노테이션 제거 (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
junseoplee committed Oct 4, 2024
1 parent 489006e commit 0ba8d61
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/main/java/project/backend/entity/user/User.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
import jakarta.persistence.Table;
import lombok.AccessLevel;
import lombok.Builder;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.NoArgsConstructor;
import project.backend.entity.BaseEntity;
Expand All @@ -17,7 +16,6 @@
@Getter
@Table(name = "users")
@NoArgsConstructor(access = AccessLevel.PROTECTED)
@EqualsAndHashCode(of = "id", callSuper = false)
public class User extends BaseEntity {

@Id
Expand Down

0 comments on commit 0ba8d61

Please sign in to comment.