Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/notify/AtsNotificationNavigateItem.java')
-rw-r--r--plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/notify/AtsNotificationNavigateItem.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/notify/AtsNotificationNavigateItem.java b/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/notify/AtsNotificationNavigateItem.java
index 37624aaaf5f..b08155b2910 100644
--- a/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/notify/AtsNotificationNavigateItem.java
+++ b/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/notify/AtsNotificationNavigateItem.java
@@ -54,7 +54,7 @@ public class AtsNotificationNavigateItem extends XNavigateItemAction {
return;
}
Operations.executeAsJob(new NotificationJob(diag.isSendNotifications(), diag.getSelectedAtsNotifications()),
- true);
+ true);
}
}
@@ -85,8 +85,8 @@ public class AtsNotificationNavigateItem extends XNavigateItemAction {
for (OseeNotificationEvent event : notify.getNotificationEvents(monitor)) {
numEvents++;
rd.addRaw(AHTML.addRowMultiColumnTable(event.getType(), event.getDescription(),
- XResultData.getHyperlink(event.getId(), event.getId(), AtsUtil.getAtsBranch().getId()),
- Artifacts.semmicolonArts(event.getUsers()), OseeNotifyUsersJob.getHyperlink(event)));
+ XResultData.getHyperlink(event.getId(), event.getId(), AtsUtil.getAtsBranch().getId()),
+ Artifacts.semmicolonArts(event.getUsers()), OseeNotifyUsersJob.getHyperlink(event)));
if (sendNotifications) {
OseeNotificationManager.getInstance().addNotificationEvent(event);
}

Back to the top