org.symbian.tools.mtw.ui/src/org/symbian/tools/tmw/internal/ui/wizard/NewApplicationWizard.java
changeset 466 129c94e78375
parent 465 87920e15f8eb
child 467 5a2901872fcf
--- a/org.symbian.tools.mtw.ui/src/org/symbian/tools/tmw/internal/ui/wizard/NewApplicationWizard.java	Mon Aug 16 16:23:25 2010 -0700
+++ b/org.symbian.tools.mtw.ui/src/org/symbian/tools/tmw/internal/ui/wizard/NewApplicationWizard.java	Tue Aug 17 13:40:28 2010 -0700
@@ -46,6 +46,8 @@
     private NewApplicationFacetsWizardPage facetsPage;
     private NewApplicationDetailsWizardPage firstPage;
     private IStructuredSelection selection;
+    private IProjectTemplate template = null;
+    private INewApplicationWizardPage[] templatePages = new INewApplicationWizardPage[0];
     private NewApplicationTemplateWizardPage templatesPage;
     private final WizardContext wizardContext = new WizardContext();
     private IWorkbench workbench;
@@ -79,7 +81,6 @@
         firstPage = new NewApplicationDetailsWizardPage(wizardContext, databindingContext);
         return firstPage;
     }
-
     @Override
     public IWizardPage getNextPage(final IWizardPage page) {
         if (page == this.firstPage) {
@@ -99,9 +100,6 @@
         return nextPage;
     }
 
-    private IProjectTemplate template = null;
-    private INewApplicationWizardPage[] templatePages = new INewApplicationWizardPage[0];
-
     public IWizardPage[] getPages() {
         final IProjectTemplate current = wizardContext.getTemplate();
         if (template != current) {
@@ -167,9 +165,4 @@
         this.workbench = workbench;
         this.selection = selection;
     }
-
-    public boolean performFinish() {
-        super.performFinish();
-        return true;
-    }
 }