aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Reflection/AssemblyInfo.cs
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2019-03-07 18:10:55 +0100
committerBond-009 <bond.009@outlook.com>2019-03-07 18:10:55 +0100
commite91dd14b3167e3fcf12e24b4664d4d18cdad7d26 (patch)
tree5ad850357ad094343d5071a4296cc60ac2a67b7a /Emby.Server.Implementations/Reflection/AssemblyInfo.cs
parent8a53b609127cca6feee06b34f12b6d21a9eb37c7 (diff)
Remove redundent class AssemblyInfo
Diffstat (limited to 'Emby.Server.Implementations/Reflection/AssemblyInfo.cs')
-rw-r--r--Emby.Server.Implementations/Reflection/AssemblyInfo.cs25
1 files changed, 0 insertions, 25 deletions
diff --git a/Emby.Server.Implementations/Reflection/AssemblyInfo.cs b/Emby.Server.Implementations/Reflection/AssemblyInfo.cs
deleted file mode 100644
index 9d16fe43f..000000000
--- a/Emby.Server.Implementations/Reflection/AssemblyInfo.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-using System;
-using System.IO;
-using System.Reflection;
-using MediaBrowser.Model.Reflection;
-
-namespace Emby.Server.Implementations.Reflection
-{
- public class AssemblyInfo : IAssemblyInfo
- {
- public Stream GetManifestResourceStream(Type type, string resource)
- {
- return type.Assembly.GetManifestResourceStream(resource);
- }
-
- public string[] GetManifestResourceNames(Type type)
- {
- return type.Assembly.GetManifestResourceNames();
- }
-
- public Assembly[] GetCurrentAssemblies()
- {
- return AppDomain.CurrentDomain.GetAssemblies();
- }
- }
-}