Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ats.reports.burndown/src/org/eclipse/osee/ats/reports/burndown/hours/ReportUtil.java')
-rw-r--r--plugins/org.eclipse.osee.ats.reports.burndown/src/org/eclipse/osee/ats/reports/burndown/hours/ReportUtil.java34
1 files changed, 0 insertions, 34 deletions
diff --git a/plugins/org.eclipse.osee.ats.reports.burndown/src/org/eclipse/osee/ats/reports/burndown/hours/ReportUtil.java b/plugins/org.eclipse.osee.ats.reports.burndown/src/org/eclipse/osee/ats/reports/burndown/hours/ReportUtil.java
deleted file mode 100644
index 9776d03b72f..00000000000
--- a/plugins/org.eclipse.osee.ats.reports.burndown/src/org/eclipse/osee/ats/reports/burndown/hours/ReportUtil.java
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * Copyright (c) 2012 Robert Bosch Engineering and Business Solutions Ltd India. All rights reserved. This program and
- * the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies
- * this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html
- */
-package org.eclipse.osee.ats.reports.burndown.hours;
-
-import org.eclipse.osee.ats.api.workflow.log.IAtsLogItem;
-import org.eclipse.osee.ats.api.workflow.log.LogType;
-
-/**
- * Utility Class used during the report data generation
- *
- * @author Praveen Joseph
- */
-public class ReportUtil {
-
- /**
- * This method returns the amount of work with respect to a given work item
- *
- * @param item The {@link IAtsLogItem} instance
- * @return the work done
- */
- public static double getWork(final IAtsLogItem item) {
- if (item.getType() == LogType.Metrics) {
- String msg = item.getMsg();
- String[] segments = msg.split(" ");
- String workString = segments[segments.length - 1];
- return Double.parseDouble(workString);
- }
- return 0;
- }
-
-}

Back to the top