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/STRSReport.java')
-rw-r--r--plugins/org.eclipse.osee.disposition.rest/src/org/eclipse/osee/disposition/rest/internal/report/STRSReport.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.osee.disposition.rest/src/org/eclipse/osee/disposition/rest/internal/report/STRSReport.java b/plugins/org.eclipse.osee.disposition.rest/src/org/eclipse/osee/disposition/rest/internal/report/STRSReport.java
index 3611b4b3408..fb4d5b2a0f1 100644
--- a/plugins/org.eclipse.osee.disposition.rest/src/org/eclipse/osee/disposition/rest/internal/report/STRSReport.java
+++ b/plugins/org.eclipse.osee.disposition.rest/src/org/eclipse/osee/disposition/rest/internal/report/STRSReport.java
@@ -93,7 +93,7 @@ public class STRSReport {
}
private HashMap<String, DispoItem> convertToMap(List<DispoItem> list) {
- HashMap<String, DispoItem> toReturn = new HashMap<String, DispoItem>();
+ HashMap<String, DispoItem> toReturn = new HashMap<>();
for (DispoItem item : list) {
toReturn.put(item.getName(), item);
}
@@ -136,7 +136,7 @@ public class STRSReport {
}
private HashMap<String, Integer> convertToIssueTypeToCounttMap(JSONArray jsonArray) {
- HashMap<String, Integer> toReturn = new HashMap<String, Integer>();
+ HashMap<String, Integer> toReturn = new HashMap<>();
int codeCount = 0;
int scriptCount = 0;
int reqCount = 0;

Back to the top