Skip to content

Commit

Permalink
Fixed warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
michalrentka committed Jul 4, 2023
1 parent 75274ff commit 1244e55
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1506,7 +1506,7 @@ final class PDFReaderActionHandler: ViewModelActionHandler, BackgroundDbProcessi
}
}

case .failure(let error):
case .failure:
// TODO: - show error
break
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ final class AnnotationsViewController: UIViewController {
let actionSubscription = cell.actionPublisher.subscribe(onNext: { [weak self] action in
self?.perform(action: action, annotation: annotation)
})
cell.disposeBag.insert(actionSubscription)
_ = cell.disposeBag.insert(actionSubscription)
}

private func loadAttributedComment(for annotation: Annotation) -> NSAttributedString? {
Expand Down

0 comments on commit 1244e55

Please sign in to comment.