Skip to content

Commit

Permalink
🔥Fix: 사용하지 않는 메소드 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
Zena0128 committed Feb 17, 2024
1 parent 66fcac8 commit 86af4ee
Showing 1 changed file with 0 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,4 @@ public static MainPageDTO from(List<Plan> planList, List<Do> doList, List<See> s

}

public static MainPageDTO from(List<Plan> planList, List<Do> doList){
List<PlanViewDTO> planViewDTOS = planList.stream()
.map(PlanViewDTO::of)
.toList();
List<DoViewDTO> doViewDTOS = doList.stream()
.map(DoViewDTO::of)
.toList();

}


}

0 comments on commit 86af4ee

Please sign in to comment.