aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Library/EntityResolutionHelper.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-12-11 01:20:28 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-12-11 01:20:28 -0500
commitea9e8b957cdf5bb335967eeb1a018c4fc2a1db53 (patch)
tree634029375a7632d4c591256790f190493a802138 /MediaBrowser.Server.Implementations/Library/EntityResolutionHelper.cs
parent4548e6598def249d4b0fe4f4f12e2fa16d4f1e3c (diff)
update sync objects
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"
-
- };
- }
-}