remove dead code

This commit is contained in:
Luke Pulverenti
2017-01-26 23:15:05 -05:00
parent 338d5ee993
commit 8a252c8ad6
5 changed files with 20 additions and 42 deletions

View File

@@ -2619,18 +2619,6 @@ namespace Emby.Server.Implementations.Library
}
}
foreach (var map in ConfigurationManager.Configuration.PathSubstitutions)
{
if (!string.IsNullOrWhiteSpace(map.From))
{
var substitutionResult = SubstitutePathInternal(path, map.From, map.To);
if (substitutionResult.Item2)
{
return substitutionResult.Item1;
}
}
}
return path;
}