Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/codegen/org.eclipse.papyrus.cpp.cdtproject/src/org/eclipse/papyrus/cpp/cdtproject/CDTMainWizardPageV.java')
-rw-r--r--extraplugins/codegen/org.eclipse.papyrus.cpp.cdtproject/src/org/eclipse/papyrus/cpp/cdtproject/CDTMainWizardPageV.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/extraplugins/codegen/org.eclipse.papyrus.cpp.cdtproject/src/org/eclipse/papyrus/cpp/cdtproject/CDTMainWizardPageV.java b/extraplugins/codegen/org.eclipse.papyrus.cpp.cdtproject/src/org/eclipse/papyrus/cpp/cdtproject/CDTMainWizardPageV.java
index aa64b5c80ac..9066abf68d1 100644
--- a/extraplugins/codegen/org.eclipse.papyrus.cpp.cdtproject/src/org/eclipse/papyrus/cpp/cdtproject/CDTMainWizardPageV.java
+++ b/extraplugins/codegen/org.eclipse.papyrus.cpp.cdtproject/src/org/eclipse/papyrus/cpp/cdtproject/CDTMainWizardPageV.java
@@ -7,11 +7,11 @@ import org.eclipse.cdt.ui.wizards.CDTMainWizardPage;
* is required in the context of setting an initial project name, since the
* update of the project name will trigger a validation which stops with an
* exception, since some elements (notable tree) are not yet initialized.
- *
+ *
* Verify if future versions of CDT still require this "hack" {@link CDTMainWizardPage}
- *
+ *
* @author ansgar
- *
+ *
*/
public class CDTMainWizardPageV extends CDTMainWizardPage {
@@ -22,7 +22,7 @@ public class CDTMainWizardPageV extends CDTMainWizardPage {
@Override
protected boolean validatePage() {
- if(firstValidate) {
+ if (firstValidate) {
return true;
} else {
return super.validatePage();

Back to the top