From 0b6f7ce1ecc8c415d562852da85e9829aab632a9 Mon Sep 17 00:00:00 2001 From: Daniel Alm Date: Thu, 24 Jun 2021 16:12:39 +0200 Subject: [PATCH] Minor warning fix. --- DateRangePicker/ExpandedDateRangePickerController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DateRangePicker/ExpandedDateRangePickerController.swift b/DateRangePicker/ExpandedDateRangePickerController.swift index 9654b88..9c33a25 100644 --- a/DateRangePicker/ExpandedDateRangePickerController.swift +++ b/DateRangePicker/ExpandedDateRangePickerController.swift @@ -9,7 +9,7 @@ import Cocoa //! CLEANUP: Migrate to Swift 3 naming convention. -public protocol ExpandedDateRangePickerControllerDelegate: class { +public protocol ExpandedDateRangePickerControllerDelegate: AnyObject { func expandedDateRangePickerControllerDidChangeDateRange(_ controller: ExpandedDateRangePickerController) }