1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-02-17 16:28:13 +01:00

Don't load PluginTypeNone.

The code that did this was marked for removal with 2.1.1, and 2.3.0 is time to do so.
This commit is contained in:
James Crook
2018-08-03 19:11:57 +01:00
parent 233b1677dd
commit dcd9368af0

View File

@@ -1922,11 +1922,6 @@ void PluginManager::Load()
LoadGroup(&registry, PluginTypeImporter);
LoadGroup(&registry, PluginTypeStub);
// Not used by 2.1.1 or greater, but must load to allow users to switch between 2.1.0
// and 2.1.1+. This should be removed after a few releases past 2.1.0.
LoadGroup(&registry, PluginTypeNone);
return;
}