From a1912526c2823056f069da8ad035cc9aa37cd48c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Bispo?= Date: Fri, 13 Oct 2023 14:51:19 +0100 Subject: [PATCH] [PM-3532] Code clean up. DeviceType delete. (#2762) --- src/Core/Enums/DeviceType.cs | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/src/Core/Enums/DeviceType.cs b/src/Core/Enums/DeviceType.cs index 7c4b7065a..418329140 100644 --- a/src/Core/Enums/DeviceType.cs +++ b/src/Core/Enums/DeviceType.cs @@ -27,24 +27,4 @@ namespace Bit.Core.Enums VivaldiExtension = 19, SafariExtension = 20 } - - public static class DeviceTypeExtensions - { - public static List GetMobileTypes() => new List - { - DeviceType.Android, - DeviceType.AndroidAmazon, - DeviceType.iOS - }; - - public static List GetDesktopTypes() => new List - { - DeviceType.WindowsDesktop, - DeviceType.MacOsDesktop, - DeviceType.LinuxDesktop, - DeviceType.UWP, - }; - - public static List GetDesktopAndMobileTypes() => GetMobileTypes().Concat(GetDesktopTypes()).ToList(); - } }