Remove code smells in Policy Agent
[nonrtric.git] / policy-agent / src / main / java / org / oransc / policyagent / Application.java
index fdfca61..18120e5 100644 (file)
@@ -35,21 +35,18 @@ public class Application {
     private StartupService startupService;
 
     public static void main(String[] args) {
-        SpringApplication.run(Application.class, args);
+        SpringApplication.run(Application.class);
     }
 
     /**
      * 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();
     }
-
 }