Skip to content

Commit 4342b51

Browse files
authored
Update Notification.java
1 parent b573de6 commit 4342b51

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

src/main/java/clap/server/domain/model/notification/Notification.java

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,4 @@ public Notification(Task task, NotificationType type, Member receiver, String me
3434
this.message = message;
3535
this.isRead = false;
3636
}
37-
38-
public static Notification createTaskNotification(Task task, Member reviewer, NotificationType type) {
39-
return Notification.builder()
40-
.task(task)
41-
.type(type)
42-
.receiver(reviewer)
43-
.message(null)
44-
.build();
45-
}
4637
}

0 commit comments

Comments
 (0)