Remove customize plugins step

This commit is contained in:
Dmitry Trofimov
2017-11-17 10:08:31 +01:00
parent fdf70e369c
commit 48c5012b9e
@@ -14,8 +14,6 @@ public class PyCharmCustomizeIDEWizardStepsProvider implements CustomizeIDEWizar
PluginGroups groups = new PluginGroups() {
@Override
protected void initGroups(Map<String, Pair<Icon, List<String>>> tree, Map<String, String> featuredPlugins) {
addVcsGroup(tree);
addVimPlugin(featuredPlugins);
addMarkdownPlugin(featuredPlugins);
featuredPlugins.put("BashSupport", "Languages:Bash language support:BashSupport");
@@ -29,7 +27,6 @@ public class PyCharmCustomizeIDEWizardStepsProvider implements CustomizeIDEWizar
steps.add(new CustomizeLauncherScriptStep());
}
steps.add(new CustomizePluginsStepPanel(groups));
steps.add(new CustomizeFeaturedPluginsStepPanel(groups));
}
}