aboutsummaryrefslogtreecommitdiffstats
path: root/app/src/main/java/org/onap/portal/history/configuration/SchedulerConfig.java
diff options
context:
space:
mode:
authorFiete Ostkamp <Fiete.Ostkamp@telekom.de>2023-08-17 07:03:55 +0000
committerFiete Ostkamp <Fiete.Ostkamp@telekom.de>2023-08-17 07:03:55 +0000
commitc2a9ab935340303230cf66d64ecc0bf0418cc6f3 (patch)
treeeb56515a0d6d2eebc7f7640ee4a87f996c75b9ca /app/src/main/java/org/onap/portal/history/configuration/SchedulerConfig.java
parent56552b36e41b39325ea9f7df17af6a1c78cb790d (diff)
Update history to Spring Boot 3
Issue-ID: PORTALNG-41 Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de> Change-Id: I777e5921dcb0860764d1959fbcbc4e070b5238f8
Diffstat (limited to 'app/src/main/java/org/onap/portal/history/configuration/SchedulerConfig.java')
-rw-r--r--app/src/main/java/org/onap/portal/history/configuration/SchedulerConfig.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/app/src/main/java/org/onap/portal/history/configuration/SchedulerConfig.java b/app/src/main/java/org/onap/portal/history/configuration/SchedulerConfig.java
index 529cbc3..2295a5f 100644
--- a/app/src/main/java/org/onap/portal/history/configuration/SchedulerConfig.java
+++ b/app/src/main/java/org/onap/portal/history/configuration/SchedulerConfig.java
@@ -24,7 +24,6 @@ package org.onap.portal.history.configuration;
import org.onap.portal.history.services.ActionsService;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.beans.factory.annotation.Value;
import org.springframework.scheduling.annotation.EnableScheduling;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
@@ -37,7 +36,6 @@ public class SchedulerConfig {
private final ActionsService actionsService;
private final PortalHistoryConfig portalHistoryConfig;
- @Autowired
public SchedulerConfig(ActionsService actionsService, PortalHistoryConfig portalHistoryConfig){
this.actionsService = actionsService;
this.portalHistoryConfig = portalHistoryConfig;