aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Library/EntityResolutionHelper.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Server.Implementations/Library/EntityResolutionHelper.cs')
-rw-r--r--MediaBrowser.Server.Implementations/Library/EntityResolutionHelper.cs30
1 files changed, 0 insertions, 30 deletions
diff --git a/MediaBrowser.Server.Implementations/Library/EntityResolutionHelper.cs b/MediaBrowser.Server.Implementations/Library/EntityResolutionHelper.cs
deleted file mode 100644
index 2a8c4f7f3..000000000
--- a/MediaBrowser.Server.Implementations/Library/EntityResolutionHelper.cs
+++ /dev/null
@@ -1,30 +0,0 @@
-using MediaBrowser.Common.IO;
-using MediaBrowser.Controller.Entities;
-using MediaBrowser.Controller.Library;
-using System;
-using System.Collections.Generic;
-using System.IO;
-
-namespace MediaBrowser.Server.Implementations.Library
-{
- /// <summary>
- /// Class EntityResolutionHelper
- /// </summary>
- public static class EntityResolutionHelper
- {
- /// <summary>
- /// Any folder named in this list will be ignored - can be added to at runtime for extensibility
- /// </summary>
- public static readonly List<string> IgnoreFolders = new List<string>
- {
- "metadata",
- "ps3_update",
- "ps3_vprm",
- "extrafanart",
- "extrathumbs",
- ".actors",
- ".wd_tv"
-
- };
- }
-}