[jbosstools-commits] JBoss Tools SVN: r35539 - trunk/common/plugins/org.jboss.tools.common.ui/src/org/jboss/tools/common/ui/databinding.

jbosstools-commits at lists.jboss.org jbosstools-commits at lists.jboss.org
Tue Oct 11 10:56:00 EDT 2011


Author: adietish
Date: 2011-10-11 10:56:00 -0400 (Tue, 11 Oct 2011)
New Revision: 35539

Modified:
   trunk/common/plugins/org.jboss.tools.common.ui/src/org/jboss/tools/common/ui/databinding/ParametrizableWizardPageSupport.java
Log:
[JBIDE-9793] cleanup: removed commented code, removed sys.err output

Modified: trunk/common/plugins/org.jboss.tools.common.ui/src/org/jboss/tools/common/ui/databinding/ParametrizableWizardPageSupport.java
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.ui/src/org/jboss/tools/common/ui/databinding/ParametrizableWizardPageSupport.java	2011-10-11 14:55:23 UTC (rev 35538)
+++ trunk/common/plugins/org.jboss.tools.common.ui/src/org/jboss/tools/common/ui/databinding/ParametrizableWizardPageSupport.java	2011-10-11 14:56:00 UTC (rev 35539)
@@ -45,7 +45,8 @@
 	 * Creates a wizard page support that will not validate for the given status
 	 * mask (severity).
 	 * 
-	 * @param nonValidatingSeverity the status severity mask that will not validate
+	 * @param nonValidatingSeverity
+	 *            the status severity mask that will not validate
 	 * @param wizardPage
 	 *            the wizardpage to apply this support to
 	 * @param dbc
@@ -63,7 +64,8 @@
 		if (currentStatusStale) {
 			pageComplete = false;
 		} else if (currentStatus != null) {
-			pageComplete = !((nonValidatingSeverity | currentStatus.getSeverity()) == nonValidatingSeverity);
+			pageComplete = !(
+					(nonValidatingSeverity | currentStatus.getSeverity()) == nonValidatingSeverity);
 		}
 		((WizardPage) getDialogPage()).setPageComplete(pageComplete);
 	}



More information about the jbosstools-commits mailing list