diff options
| author | Bond_009 <bond.009@outlook.com> | 2019-01-25 21:52:10 +0100 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2019-01-25 21:52:10 +0100 |
| commit | 8af256f9c2eaffee31211c5487a28b5cbaba3af0 (patch) | |
| tree | bce4827e87ed1037d27610ac0db210f9105bff77 /Emby.Server.Implementations/ApplicationHost.cs | |
| parent | e0315b569591b71938829a8f35ac264399ef66bd (diff) | |
Fix always null expressions
Diffstat (limited to 'Emby.Server.Implementations/ApplicationHost.cs')
| -rw-r--r-- | Emby.Server.Implementations/ApplicationHost.cs | 3 |
1 files changed, 1 insertions, 2 deletions
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<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() |
