Merge "Added STD sim 2.0.0 tests"
[nonrtric.git] / policy-agent / src / main / java / org / oransc / policyagent / configuration / AsyncConfiguration.java
index 085320c..882f30c 100644 (file)
@@ -21,6 +21,7 @@
 package org.oransc.policyagent.configuration;
 
 import java.util.concurrent.Executor;
+
 import org.springframework.context.annotation.Bean;
 import org.springframework.context.annotation.Configuration;
 import org.springframework.scheduling.annotation.AsyncConfigurer;
@@ -34,7 +35,7 @@ public class AsyncConfiguration implements AsyncConfigurer {
     @Override
     @Bean(name = "threadPoolTaskExecutor")
     public Executor getAsyncExecutor() {
-        //Set this configuration value from common properties file
+        // Set this configuration value from common properties file
         ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();
         executor.setCorePoolSize(5);
         executor.setMaxPoolSize(10);