Open
Description
org.eclipse.ui.actions.CloseUnrelatedProjectsAction.buildConnectedComponents(IProject[]) calls the following code possibly in the UI thread:
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.