diff options
| author | Andrew Rabert <6550543+nvllsvm@users.noreply.github.com> | 2019-01-26 14:14:23 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-26 14:14:23 -0500 |
| commit | 716586850962389ad8d7944f41341b7e8730b35c (patch) | |
| tree | bdd3cfe8366f70eaef62cf5c7d635d4bd6257f8c /Emby.Server.Implementations/ApplicationHost.cs | |
| parent | 4190410c7ed92e558ae92771c653649f63ee8804 (diff) | |
| parent | 8af256f9c2eaffee31211c5487a28b5cbaba3af0 (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.cs | 3 |
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() |
