Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ats.rest/src/org/eclipse/osee/ats/rest/internal/AtsServerImpl.java')
-rw-r--r--plugins/org.eclipse.osee.ats.rest/src/org/eclipse/osee/ats/rest/internal/AtsServerImpl.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/org.eclipse.osee.ats.rest/src/org/eclipse/osee/ats/rest/internal/AtsServerImpl.java b/plugins/org.eclipse.osee.ats.rest/src/org/eclipse/osee/ats/rest/internal/AtsServerImpl.java
index 30e4f8c7a8a..584e71fafd4 100644
--- a/plugins/org.eclipse.osee.ats.rest/src/org/eclipse/osee/ats/rest/internal/AtsServerImpl.java
+++ b/plugins/org.eclipse.osee.ats.rest/src/org/eclipse/osee/ats/rest/internal/AtsServerImpl.java
@@ -139,10 +139,9 @@ public class AtsServerImpl extends AtsCoreServiceImpl implements IAtsServer {
storeService =
new AtsStoreServiceImpl(attributeResolverService, this, stateFactory, logFactory, this, jdbcService);
- utilService = AtsCoreFactory.getUtilService(attributeResolverService);
queryService = new AtsQueryServiceImpl(this, jdbcService);
actionableItemManager = new ActionableItemManager(attributeResolverService, storeService, this);
- actionFactory = new ActionFactory(workItemFactory, utilService, getSequenceProvider(), actionableItemManager,
+ actionFactory = new ActionFactory(workItemFactory, getSequenceProvider(), actionableItemManager,
attributeResolverService, stateFactory, getServices());
agileService = new AgileService(logger, this);

Back to the top