Don't prepare inside GetInstance

This commit is contained in:
Timothy Baldridge 2020-04-10 21:26:05 -06:00 committed by GitHub
parent 482b7f9c9e
commit 90c2bf6901
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -58,7 +58,6 @@ namespace Wabbajack.Lib.Downloaders
public static T GetInstance<T>() where T : IDownloader
{
var inst = (T)IndexedDownloaders[typeof(T)];
inst.Prepare().FireAndForget();
return inst;
}