We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
org.eclipse.ui.actions.CloseUnrelatedProjectsAction.buildConnectedComponents(IProject[]) calls the following code possibly in the UI thread:
eclipse.platform.ui/bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/actions/CloseUnrelatedProjectsAction.java
Line 83 in 0344b2b
this leads to all classpath containers of all projects to be resolved what is a costly operation and blocks the whole IDE startup procedure see here:
instead the computation should happen in the background and only the UI has to be updated once the operation succeeded.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
org.eclipse.ui.actions.CloseUnrelatedProjectsAction.buildConnectedComponents(IProject[]) calls the following code possibly in the UI thread:
eclipse.platform.ui/bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/actions/CloseUnrelatedProjectsAction.java
Line 83 in 0344b2b
this leads to all classpath containers of all projects to be resolved what is a costly operation and blocks the whole IDE startup procedure see here:
instead the computation should happen in the background and only the UI has to be updated once the operation succeeded.
The text was updated successfully, but these errors were encountered: