From 8af256f9c2eaffee31211c5487a28b5cbaba3af0 Mon Sep 17 00:00:00 2001 From: Bond_009 Date: Fri, 25 Jan 2019 21:52:10 +0100 Subject: Fix always null expressions --- Emby.Server.Implementations/ApplicationHost.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'Emby.Server.Implementations') diff --git a/Emby.Server.Implementations/ApplicationHost.cs b/Emby.Server.Implementations/ApplicationHost.cs index f5a4f1581..f29e732da 100644 --- a/Emby.Server.Implementations/ApplicationHost.cs +++ b/Emby.Server.Implementations/ApplicationHost.cs @@ -466,9 +466,8 @@ namespace Emby.Server.Implementations private static Tuple GetAssembly(Type type) { var assembly = type.GetTypeInfo().Assembly; - string path = null; - return new Tuple(assembly, path); + return new Tuple(assembly, null); } public virtual IStreamHelper CreateStreamHelper() -- cgit v1.2.3