Fix formatting in the dashboard
[nonrtric.git] / dashboard / webapp-backend / src / main / java / org / oransc / ric / portal / dashboard / config / AdminConfiguration.java
index 696d74f..8c646fe 100644 (file)
@@ -38,21 +38,21 @@ import org.springframework.context.annotation.Profile;
 @Profile("!test")
 public class AdminConfiguration {
 
-       private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
-
-       // Populated by the autowired constructor
-       private final String userfile;
-
-       @Autowired
-       public AdminConfiguration(@Value("${userfile}") final String userfile) {
-               logger.debug("ctor userfile '{}'", userfile);
-               this.userfile = userfile;
-       }
-
-       @Bean
-       // The bean (method) name must be globally unique
-       public DashboardUserManager userManager() throws IOException {
-               return new DashboardUserManager(userfile);
-       }
+    private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
+
+    // Populated by the autowired constructor
+    private final String userfile;
+
+    @Autowired
+    public AdminConfiguration(@Value("${userfile}") final String userfile) {
+        logger.debug("ctor userfile '{}'", userfile);
+        this.userfile = userfile;
+    }
+
+    @Bean
+    // The bean (method) name must be globally unique
+    public DashboardUserManager userManager() throws IOException {
+        return new DashboardUserManager(userfile);
+    }
 
 }