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/OperationReport.java')
-rw-r--r--plugins/org.eclipse.osee.disposition.rest/src/org/eclipse/osee/disposition/rest/internal/report/OperationReport.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/org.eclipse.osee.disposition.rest/src/org/eclipse/osee/disposition/rest/internal/report/OperationReport.java b/plugins/org.eclipse.osee.disposition.rest/src/org/eclipse/osee/disposition/rest/internal/report/OperationReport.java
index bd14ef4d834..2cce8034218 100644
--- a/plugins/org.eclipse.osee.disposition.rest/src/org/eclipse/osee/disposition/rest/internal/report/OperationReport.java
+++ b/plugins/org.eclipse.osee.disposition.rest/src/org/eclipse/osee/disposition/rest/internal/report/OperationReport.java
@@ -21,10 +21,10 @@ import java.util.Set;
public class OperationReport {
- private final Map<String, String> itemToSummaryMap = new HashMap<String, String>();
- private final Set<String> newItems = new HashSet<String>();
+ private final Map<String, String> itemToSummaryMap = new HashMap<>();
+ private final Set<String> newItems = new HashSet<>();
private String summary;
- private final Set<String> otherMessages = new HashSet<String>();
+ private final Set<String> otherMessages = new HashSet<>();
public OperationReport() {

Back to the top