Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-patch] ConversionWizard patch

doRunProlog shouldn't be called from doRun. Otherwise, there is a risk to
call it twise: from base class and from the inherited one.

Index: ConversionWizard.java
===================================================================
RCS file:
/home/tools/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/wizards/conversion/Con
versionWizard.java,v
retrieving revision 1.6
diff -u -r1.6 ConversionWizard.java
--- ConversionWizard.java 13 Nov 2002 20:39:29 -0000 1.6
+++ ConversionWizard.java 22 Nov 2002 13:48:17 -0000
@@ -125,7 +125,6 @@
      * @see
org.eclipse.cdt.ui.wizards.CProjectWizard#doRun(IProgressMonitor)
      */
     protected void doRun(IProgressMonitor monitor) {
-        doRunPrologue(monitor);
         try{
             mainPage.doRun(monitor, getProjectID());
         } catch (CoreException ce){


===================================================================

Thanks,

Alex Chapiro



Back to the top