mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
[platform] unneeded 'invokeLater()' call - revert
The second call is needed to handle the event queue switch.
This commit is contained in:
@@ -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();
|
||||
});
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user