Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.disposition.rest/src/org/eclipse/osee/disposition/rest/internal/report/ExportSet.java')
-rw-r--r--plugins/org.eclipse.osee.disposition.rest/src/org/eclipse/osee/disposition/rest/internal/report/ExportSet.java54
1 files changed, 27 insertions, 27 deletions
diff --git a/plugins/org.eclipse.osee.disposition.rest/src/org/eclipse/osee/disposition/rest/internal/report/ExportSet.java b/plugins/org.eclipse.osee.disposition.rest/src/org/eclipse/osee/disposition/rest/internal/report/ExportSet.java
index e1ad8e080af..326f88c5445 100644
--- a/plugins/org.eclipse.osee.disposition.rest/src/org/eclipse/osee/disposition/rest/internal/report/ExportSet.java
+++ b/plugins/org.eclipse.osee.disposition.rest/src/org/eclipse/osee/disposition/rest/internal/report/ExportSet.java
@@ -201,38 +201,38 @@ public class ExportSet {
private static String[] getHeadersDetailed() {
String[] toReturn = {//
- "Script Name",//
- "Category",//
- "Status",//
- "Total Test Points",//
- "Failures",//
- "Failed Points",//
- "Remaining Count",//
- "Remaining Points",//
- "Assignee",//
- "Item Notes",//
- "Needs Rerun",//
- "Aborted",//
- "Station",//
- "Elapsed Time",//
- "Creation Date",//
- "Last Updated",//
- "Version",//
- "Dispositions"//
- };
+ "Script Name", //
+ "Category", //
+ "Status", //
+ "Total Test Points", //
+ "Failures", //
+ "Failed Points", //
+ "Remaining Count", //
+ "Remaining Points", //
+ "Assignee", //
+ "Item Notes", //
+ "Needs Rerun", //
+ "Aborted", //
+ "Station", //
+ "Elapsed Time", //
+ "Creation Date", //
+ "Last Updated", //
+ "Version", //
+ "Dispositions"//
+ };
return toReturn;
}
private static String[] getHeadersCoverage() {
String[] toReturn = {//
- "Namespace",//
- "Parent Coverage Unit",//
- "Unit",//
- "Method Number",//
- "Execution Line Number",//
- "Coverage Method",//
- "Coverage Rationale",//
- "Text"};
+ "Namespace", //
+ "Parent Coverage Unit", //
+ "Unit", //
+ "Method Number", //
+ "Execution Line Number", //
+ "Coverage Method", //
+ "Coverage Rationale", //
+ "Text"};
return toReturn;
}
}

Back to the top