Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/column/HoursSpentStateTotalColumn.java')
-rw-r--r--plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/column/HoursSpentStateTotalColumn.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/column/HoursSpentStateTotalColumn.java b/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/column/HoursSpentStateTotalColumn.java
index 09ed4c47266..28367e0dc69 100644
--- a/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/column/HoursSpentStateTotalColumn.java
+++ b/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/column/HoursSpentStateTotalColumn.java
@@ -53,8 +53,8 @@ public class HoursSpentStateTotalColumn extends XViewerAtsColumn implements IXVi
public String getColumnText(Object element, XViewerColumn column, int columnIndex) {
try {
if (element instanceof IAtsWorkItem) {
- return AtsUtilCore.doubleToI18nString(HoursSpentUtil.getHoursSpentStateTotal((IAtsWorkItem) element,
- AtsClientService.get().getServices()));
+ return AtsUtilCore.doubleToI18nString(
+ HoursSpentUtil.getHoursSpentStateTotal((IAtsWorkItem) element, AtsClientService.get().getServices()));
}
} catch (OseeCoreException ex) {
return LogUtil.getCellExceptionString(ex);

Back to the top