Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ats.api/src/org/eclipse/osee/ats/api/notify/AtsWorkItemNotificationEvent.java')
-rw-r--r--plugins/org.eclipse.osee.ats.api/src/org/eclipse/osee/ats/api/notify/AtsWorkItemNotificationEvent.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/org.eclipse.osee.ats.api/src/org/eclipse/osee/ats/api/notify/AtsWorkItemNotificationEvent.java b/plugins/org.eclipse.osee.ats.api/src/org/eclipse/osee/ats/api/notify/AtsWorkItemNotificationEvent.java
index 1ba10c538c0..c630fb2e1d6 100644
--- a/plugins/org.eclipse.osee.ats.api/src/org/eclipse/osee/ats/api/notify/AtsWorkItemNotificationEvent.java
+++ b/plugins/org.eclipse.osee.ats.api/src/org/eclipse/osee/ats/api/notify/AtsWorkItemNotificationEvent.java
@@ -22,9 +22,9 @@ import javax.xml.bind.annotation.XmlRootElement;
public class AtsWorkItemNotificationEvent {
private String fromUserId;
- private final Collection<String> userIds = new HashSet<String>();
- private final Collection<String> atsIds = new HashSet<String>();
- private final Set<AtsNotifyType> notifyTypes = new HashSet<AtsNotifyType>();
+ private final Collection<String> userIds = new HashSet<>();
+ private final Collection<String> atsIds = new HashSet<>();
+ private final Set<AtsNotifyType> notifyTypes = new HashSet<>();
public Collection<String> getAtsIds() {
return atsIds;

Back to the top