[platform] unneeded 'invokeLater()' call - revert

The second call is needed to handle the event queue switch.
This commit is contained in:
Roman Shevchenko
2016-10-25 10:23:23 +02:00
parent f367d0c436
commit 67c453c326
@@ -42,7 +42,12 @@ public class MainImpl {
StartupUtil.runStartupWizard();
}
new IdeaApplication(args).run();
IdeaApplication app = new IdeaApplication(args);
//noinspection SSBasedInspection
SwingUtilities.invokeLater(() -> {
PluginManager.installExceptionHandler();
app.run();
});
});
}
});