Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/column/EstimatedCompletionDateColumn.java')
-rw-r--r--plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/column/EstimatedCompletionDateColumn.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/column/EstimatedCompletionDateColumn.java b/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/column/EstimatedCompletionDateColumn.java
index b71b2350277..6cd11a3e668 100644
--- a/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/column/EstimatedCompletionDateColumn.java
+++ b/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/column/EstimatedCompletionDateColumn.java
@@ -93,7 +93,7 @@ public class EstimatedCompletionDateColumn extends XViewerAtsAttributeValueColum
public static Date getDate(Object object) throws OseeCoreException {
if (Artifacts.isOfType(object, AtsArtifactTypes.Action)) {
- return getDate((ActionManager.getFirstTeam(object)));
+ return getDate(ActionManager.getFirstTeam(object));
} else if (Artifacts.isOfType(object, AtsArtifactTypes.TeamWorkflow)) {
Date date =
((TeamWorkFlowArtifact) object).getSoleAttributeValue(AtsAttributeTypes.EstimatedCompletionDate, null);

Back to the top