[jbosstools-commits] JBoss Tools SVN: r35984 - branches/jbosstools-3.3.0.M4/as/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard.

jbosstools-commits at lists.jboss.org jbosstools-commits at lists.jboss.org
Tue Oct 25 12:02:05 EDT 2011


Author: adietish
Date: 2011-10-25 12:02:05 -0400 (Tue, 25 Oct 2011)
New Revision: 35984

Modified:
   branches/jbosstools-3.3.0.M4/as/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/AdapterWizardPage.java
Log:
[JBIDE-10031] only checking 'create server adapter' if a compatible server adapter was found

Modified: branches/jbosstools-3.3.0.M4/as/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/AdapterWizardPage.java
===================================================================
--- branches/jbosstools-3.3.0.M4/as/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/AdapterWizardPage.java	2011-10-25 15:59:20 UTC (rev 35983)
+++ branches/jbosstools-3.3.0.M4/as/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/AdapterWizardPage.java	2011-10-25 16:02:05 UTC (rev 35984)
@@ -516,7 +516,7 @@
 		boolean canCreateServer = serverTypeToCreate != null;
 		serverAdapterCheckbox.setEnabled(canCreateServer);
 		// serverAdapterCheckbox.setSelection(canCreateServer);
-		serverAdapterCheckboxObservable.setValue(true);
+		serverAdapterCheckboxObservable.setValue(canCreateServer);
 		enableServerWidgets(canCreateServer);
 		refreshValidRuntimes();
 		model.getParentModel().setProperty(AdapterWizardPageModel.SERVER_TYPE, serverTypeToCreate);



More information about the jbosstools-commits mailing list