diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-06-29 15:59:52 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-06-29 15:59:52 -0400 |
| commit | 1a5a75854bd3ec4cdd771c9afdaefe0acb62c03c (patch) | |
| tree | 1479a46b06ca7e3a22f4c1646e6a65aa533e2f33 /MediaBrowser.Model/Dlna/Filter.cs | |
| parent | b87f759460490792b7ceaf0513ab0d87a869e73b (diff) | |
update translations
Diffstat (limited to 'MediaBrowser.Model/Dlna/Filter.cs')
| -rw-r--r-- | MediaBrowser.Model/Dlna/Filter.cs | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/MediaBrowser.Model/Dlna/Filter.cs b/MediaBrowser.Model/Dlna/Filter.cs deleted file mode 100644 index a41997010..000000000 --- a/MediaBrowser.Model/Dlna/Filter.cs +++ /dev/null @@ -1,35 +0,0 @@ -using MediaBrowser.Model.Extensions; -using System; -using System.Collections.Generic; - -namespace MediaBrowser.Model.Dlna -{ - public class Filter - { - private readonly List<string> _fields; - private readonly bool _all; - - public Filter() - : this("*") - { - - } - - public Filter(string filter) - { - _all = StringHelper.EqualsIgnoreCase(filter, "*"); - - List<string> list = new List<string>(); - foreach (string s in (filter ?? string.Empty).Split(new[] {','}, StringSplitOptions.RemoveEmptyEntries)) - list.Add(s); - _fields = list; - } - - public bool Contains(string field) - { - // Don't bother with this. Some clients (media monkey) use the filter and then don't display very well when very little data comes back. - return true; - //return _all || ListHelper.ContainsIgnoreCase(_fields, field); - } - } -} |
