Skip to content

Commit

Permalink
refactor(EventStudent) : 사용하지 않는 메서드 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
Due-IT committed Nov 30, 2024
1 parent 51d0430 commit 8fa6bf8
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions wabi/src/main/kotlin/com/wap/wabi/event/entity/EventStudent.java
Original file line number Diff line number Diff line change
Expand Up @@ -57,21 +57,6 @@ public builder student(Student student) {
return this;
}

public builder status(EventStudentStatus status) {
this.status = status;
return this;
}

public builder updatedAt(LocalDateTime updatedAt) {
this.updatedAt = updatedAt;
return this;
}

public builder checkedInAt(LocalDateTime checkedInAt) {
this.checkedInAt = checkedInAt;
return this;
}

public EventStudent build() {
return new EventStudent(this);
}
Expand Down

0 comments on commit 8fa6bf8

Please sign in to comment.