Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/actions/wizard/NewActionJob.java')
-rw-r--r--plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/actions/wizard/NewActionJob.java7
1 files changed, 3 insertions, 4 deletions
diff --git a/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/actions/wizard/NewActionJob.java b/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/actions/wizard/NewActionJob.java
index 673718b198d..e6db4d06122 100644
--- a/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/actions/wizard/NewActionJob.java
+++ b/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/actions/wizard/NewActionJob.java
@@ -71,10 +71,9 @@ public class NewActionJob extends Job {
title += " " + AtsUtil.getAtsDeveloperIncrementingNum();
}
AtsChangeSet changes = new AtsChangeSet("Create New Action");
- actionArt =
- ActionManager.createAction(monitor, title, desc, changeType, priority, validationRequired, needByDate,
- actionableItems, new Date(), AtsClientService.get().getUserService().getCurrentUser(),
- newActionListener, changes);
+ actionArt = ActionManager.createAction(monitor, title, desc, changeType, priority, validationRequired,
+ needByDate, actionableItems, new Date(), AtsClientService.get().getUserService().getCurrentUser(),
+ newActionListener, changes);
if (wizard != null) {
wizard.notifyAtsWizardItemExtensions(actionArt, changes);

Back to the top