[jbosstools-commits] JBoss Tools SVN: r35540 - trunk/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 11 11:29:57 EDT 2011


Author: adietish
Date: 2011-10-11 11:29:57 -0400 (Tue, 11 Oct 2011)
New Revision: 35540

Modified:
   trunk/as/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/DomainWizardPage.java
Log:
[JBIDE-9793] cleanup: removed commented code, removed sys.err output

Modified: trunk/as/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/DomainWizardPage.java
===================================================================
--- trunk/as/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/DomainWizardPage.java	2011-10-11 14:56:00 UTC (rev 35539)
+++ trunk/as/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/DomainWizardPage.java	2011-10-11 15:29:57 UTC (rev 35540)
@@ -74,10 +74,8 @@
 					@Override
 					public IStatus validate(Object value) {
 						if (!(value instanceof IDomain)) {
-							System.err.println("domain validator: domain is NOT present!!!!!!!!!!!!!");
 							return ValidationStatus.info("You have no domain yet, you need to create one.");
 						}
-						System.err.println("domain validator: domain is present");
 						return ValidationStatus.ok();
 					}
 				}));
@@ -121,7 +119,6 @@
 
 						@Override
 						protected IStatus run(IProgressMonitor monitor) {
-							System.err.println("running job " + this);
 							try {
 								model.renameDomain();
 								return Status.OK_STATUS;
@@ -145,7 +142,6 @@
 
 				@Override
 				protected IStatus run(IProgressMonitor monitor) {
-					System.err.println("running job " + this);
 					try {
 						model.updateDomain();
 						return Status.OK_STATUS;



More information about the jbosstools-commits mailing list