aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/ApplicationHost.cs
diff options
context:
space:
mode:
authorAndrew Rabert <6550543+nvllsvm@users.noreply.github.com>2019-01-26 14:14:23 -0500
committerGitHub <noreply@github.com>2019-01-26 14:14:23 -0500
commit716586850962389ad8d7944f41341b7e8730b35c (patch)
treebdd3cfe8366f70eaef62cf5c7d635d4bd6257f8c /Emby.Server.Implementations/ApplicationHost.cs
parent4190410c7ed92e558ae92771c653649f63ee8804 (diff)
parent8af256f9c2eaffee31211c5487a28b5cbaba3af0 (diff)
Merge pull request #709 from Bond-009/null
Fix always null expressions
Diffstat (limited to 'Emby.Server.Implementations/ApplicationHost.cs')
-rw-r--r--Emby.Server.Implementations/ApplicationHost.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/ApplicationHost.cs b/Emby.Server.Implementations/ApplicationHost.cs
index e0088ab19..25544cdae 100644
--- a/Emby.Server.Implementations/ApplicationHost.cs
+++ b/Emby.Server.Implementations/ApplicationHost.cs
@@ -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()