Skip to content

Commit 1c1d663

Browse files
committed
Updating plug-in dependencies job should provide project information
Updating plug-in dependencies can sometimes run relatively long, in its current form it give no indication which project requires a lot of time. This adds the info, which project is currently updated.
1 parent 2ecbcf2 commit 1c1d663

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

ui/org.eclipse.pde.core/src/org/eclipse/pde/internal/core/ClasspathContainerState.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ protected IStatus run(IProgressMonitor jobMonitor) {
108108
monitor.setWorkRemaining(WORK);
109109
IProject project = request.project();
110110
if (project.exists() && project.isOpen()) {
111+
monitor.subTask(project.getName());
111112
IPluginModelBase model = modelManager.findModel(project);
112113
if (model != null && PluginProject.isJavaProject(project)) {
113114
IJavaProject javaProject = JavaCore.create(project);

0 commit comments

Comments
 (0)