Merge pull request #709 from Bond-009/null

Fix always null expressions
This commit is contained in:
Andrew Rabert
2019-01-26 14:14:23 -05:00
committed by GitHub
7 changed files with 44 additions and 55 deletions

View File

@@ -462,9 +462,8 @@ namespace Emby.Server.Implementations
private static Tuple<Assembly, string> GetAssembly(Type type)
{
var assembly = type.GetTypeInfo().Assembly;
string path = null;
return new Tuple<Assembly, string>(assembly, path);
return new Tuple<Assembly, string>(assembly, null);
}
public virtual IStreamHelper CreateStreamHelper()