Skip to content

Commit 15305f9

Browse files
committed
[refactor] 불필요한 코드 삭제
1 parent 42d34a1 commit 15305f9

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

DailyQuest/DailyQuest/Data/Repositories/DefaultQuestsRepository.swift

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,6 @@ extension DefaultQuestsRepository: QuestsRepository {
2323
func save(with quest: [Quest]) -> Single<[Quest]> {
2424
return persistentStorage.saveQuests(with: quest)
2525
.flatMap (saveNetworkService(quests:))
26-
.do{ event in
27-
print("save", event)
28-
}
2926
}
3027

3128
func fetch(by date: Date) -> Observable<[Quest]> {

DailyQuest/DailyQuest/Presentation/Home/ViewController/HomeViewController.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,6 @@ final class HomeViewController: UIViewController {
128128
private func bindToQuestView(with output: HomeViewModel.Output) {
129129
output
130130
.data
131-
.debug()
132131
.drive(questView.rx.items(cellIdentifier: QuestCell.reuseIdentifier, cellType: QuestCell.self)) { row, item, cell in
133132
cell.setup(with: item)
134133
}

0 commit comments

Comments
 (0)