Merge "Remove unused exceptions from dashboard backend"
[nonrtric.git] / policy-agent / src / main / java / org / oransc / policyagent / Application.java
index e4b6e5a..154ab1d 100644 (file)
@@ -20,7 +20,7 @@
 
 package org.oransc.policyagent;
 
-import org.oransc.policyagent.controllers.StartupService;
+import org.oransc.policyagent.tasks.StartupService;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.boot.CommandLineRunner;
 import org.springframework.boot.SpringApplication;
@@ -39,17 +39,14 @@ public class Application {
     }
 
     /**
-     * Starts the se4rvice and reads the configuration.
+     * Starts the service and reads the configuration.
      *
-     * @param ctx
-     * @return
+     * @param ctx the application context.
+     *
+     * @return the command line runner performing tasks at startup.
      */
     @Bean
     public CommandLineRunner commandLineRunner(ApplicationContext ctx) {
-        return args -> {
-
-            startupService.startup();
-        };
+        return args -> startupService.startup();
     }
-
 }