From 05d745ad6dc65f7e42092725c0de01c3ceb90710 Mon Sep 17 00:00:00 2001 From: Davide De Rosa Date: Sat, 27 Oct 2018 13:21:03 +0200 Subject: [PATCH] Remove unused code --- Passepartout-iOS/Global/Macros.swift | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Passepartout-iOS/Global/Macros.swift b/Passepartout-iOS/Global/Macros.swift index c28a1e24..d173fe66 100644 --- a/Passepartout-iOS/Global/Macros.swift +++ b/Passepartout-iOS/Global/Macros.swift @@ -33,10 +33,6 @@ class Macros { static func actionSheet(_ title: String?, _ message: String?) -> UIAlertController { return UIAlertController(title: title, message: message, preferredStyle: .actionSheet) } - - static var isDeviceNonPlus: Bool { - return (UI_USER_INTERFACE_IDIOM() == .phone) && (UIScreen.main.scale < 3.0) - } } extension UIAlertController {