Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorddunne2011-09-13 19:52:13 +0000
committerRyan D. Brooks2011-09-13 19:52:13 +0000
commitbc373f8021c7fb623261a41f6ac1fbac42118cf9 (patch)
tree2a9024a3ecf505df7eb6b64953a5ee79388ab370 /plugins/org.eclipse.osee.ats.core
parentd8db9aacb928af8409e838366a7003fcd43ef1c9 (diff)
downloadorg.eclipse.osee-bc373f8021c7fb623261a41f6ac1fbac42118cf9.tar.gz
org.eclipse.osee-bc373f8021c7fb623261a41f6ac1fbac42118cf9.tar.xz
org.eclipse.osee-bc373f8021c7fb623261a41f6ac1fbac42118cf9.zip
bug[bgz_357236]: Able to transition decision review without selecting decision
Diffstat (limited to 'plugins/org.eclipse.osee.ats.core')
-rw-r--r--plugins/org.eclipse.osee.ats.core/src/org/eclipse/osee/ats/core/validator/AtsXComboValidator.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.ats.core/src/org/eclipse/osee/ats/core/validator/AtsXComboValidator.java b/plugins/org.eclipse.osee.ats.core/src/org/eclipse/osee/ats/core/validator/AtsXComboValidator.java
index 43a8394aa88..8e88f7aada6 100644
--- a/plugins/org.eclipse.osee.ats.core/src/org/eclipse/osee/ats/core/validator/AtsXComboValidator.java
+++ b/plugins/org.eclipse.osee.ats.core/src/org/eclipse/osee/ats/core/validator/AtsXComboValidator.java
@@ -22,7 +22,7 @@ public class AtsXComboValidator extends AtsXWidgetValidator {
@Override
public WidgetResult validateTransition(IValueProvider provider, WidgetDefinition widgetDef, StateDefinition fromStateDef, StateDefinition toStateDef) throws OseeCoreException {
WidgetResult result = WidgetResult.Valid;
- if ("XComboDam".equals(widgetDef.getXWidgetName())) {
+ if (widgetDef.getXWidgetName().startsWith("XComboDam")) {
result = validateWidgetIsRequired(provider, widgetDef, fromStateDef, toStateDef);
if (!result.isValid()) {
return result;

Back to the top