Skip to content

Commit

Permalink
Removes progress reporting from product configuration file wizard
Browse files Browse the repository at this point in the history
Reporting progress for the creation of the file with only one step
reported after the file is created by before it it opened, seems unless.
  • Loading branch information
vogella committed Nov 3, 2023
1 parent 79c9f13 commit 7c471c3
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
import org.eclipse.pde.internal.core.product.WorkspaceProductModel;
import org.eclipse.pde.internal.ui.IPDEUIConstants;
import org.eclipse.pde.internal.ui.PDEPlugin;
import org.eclipse.pde.internal.ui.PDEUIMessages;
import org.eclipse.swt.widgets.Display;
import org.eclipse.ui.IWorkbenchPage;
import org.eclipse.ui.IWorkbenchPart;
Expand All @@ -67,11 +66,8 @@ public BaseProductCreationOperation(IFile file) {

@Override
protected void execute(IProgressMonitor monitor) throws CoreException, InvocationTargetException, InterruptedException {
monitor.beginTask(PDEUIMessages.BaseProductCreationOperation_taskName, 2);
createContent();
monitor.worked(1);
openFile();
monitor.done();
}

private void createContent() {
Expand Down

0 comments on commit 7c471c3

Please sign in to comment.