Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--plugins/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/widgets/XStackedDam.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/widgets/XStackedDam.java b/plugins/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/widgets/XStackedDam.java
index 6d1a38cb8c3..383630ac956 100644
--- a/plugins/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/widgets/XStackedDam.java
+++ b/plugins/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/widgets/XStackedDam.java
@@ -140,7 +140,7 @@ public class XStackedDam extends XStackedWidget<String> implements IAttributeWid
@Override
public Result isDirty() throws OseeCoreException {
try {
- Collection<String> enteredValues = new ArrayList<String>();//getSelected();
+ Collection<String> enteredValues = getInput();
Collection<String> storedValues = getStored();
if (!Collections.isEqual(enteredValues, storedValues)) {
return new Result(true, getAttributeType() + " is dirty");

Back to the top