Removed unecessary method.

This commit is contained in:
Harrison Deng 2020-12-25 03:37:26 -06:00
parent ca7221ea42
commit e4f2ebf792

View File

@ -34,16 +34,6 @@ namespace GameServiceWarden.Host.Modules
return res;
}
/// <summary>
/// Loads all module for each given path to modules file.
/// </summary>
/// <param name="paths">The paths to load modules for.</param>
/// <returns>A <see cref="Dictionary{string, IEnumerable{IGameServiceModule}}"/> where the key is a <see cref="string"/> that is the associated path.</returns>
public Dictionary<string, IEnumerable<IGameServiceModule>> LoadAllModules(params string[] paths)
{
return LoadAllModules(paths);
}
private Assembly loadAssembly(string path)
{
ModuleLoadContext moduleLoadContext = new ModuleLoadContext(path);