AudioPluginFormatManager addDefaultFormats() adds VST on iOS

I’m displaying the PluginListComponent window on IOS and the Options… button at the bottom of the window gives a menu that includes scanning for VST plugins, but iOS does not support VST. I could work around this but it seems like the default formats on IOS should only include AU.

In AudioPluginFormatManager there is the code:

#if JUCE_PLUGINHOST_VST && (JUCE_MAC || JUCE_WINDOWS || JUCE_LINUX || JUCE_IOS)
    formats.add (new VSTPluginFormat());
#endif

Should JUCE_IOS not be excluded from the this list?