From 48facb797ed912e4ea6b04b17d1ff190ac2daac4 Mon Sep 17 00:00:00 2001 From: stefan Date: Wed, 12 Sep 2018 19:26:21 +0200 Subject: Update to 3.5.2 and .net core 2.1 --- MediaBrowser.Controller/Entities/TagExtensions.cs | 35 ----------------------- 1 file changed, 35 deletions(-) delete mode 100644 MediaBrowser.Controller/Entities/TagExtensions.cs (limited to 'MediaBrowser.Controller/Entities/TagExtensions.cs') diff --git a/MediaBrowser.Controller/Entities/TagExtensions.cs b/MediaBrowser.Controller/Entities/TagExtensions.cs deleted file mode 100644 index e5d8f35d9..000000000 --- a/MediaBrowser.Controller/Entities/TagExtensions.cs +++ /dev/null @@ -1,35 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using MediaBrowser.Model.Extensions; - -namespace MediaBrowser.Controller.Entities -{ - public static class TagExtensions - { - public static void AddTag(this BaseItem item, string name) - { - if (string.IsNullOrWhiteSpace(name)) - { - throw new ArgumentNullException("name"); - } - - var current = item.Tags; - - if (!current.Contains(name, StringComparer.OrdinalIgnoreCase)) - { - if (current.Length == 0) - { - item.Tags = new[] { name }; - } - else - { - var list = current.ToArray(current.Length + 1); - list[list.Length - 1] = name; - - item.Tags = list; - } - } - } - } -} -- cgit v1.2.3