Format Java code to ONAP standard
[aai/search-data-service.git] / src / main / java / org / onap / aai / sa / Application.java
index cd253c6..4fe2202 100644 (file)
@@ -33,11 +33,11 @@ public class Application extends SpringBootServletInitializer {
     public static void main(String[] args) {\r
 \r
         String keyStorePassword = System.getProperty("KEY_STORE_PASSWORD");\r
-        if(keyStorePassword==null || keyStorePassword.isEmpty()){\r
+        if (keyStorePassword == null || keyStorePassword.isEmpty()) {\r
             throw new RuntimeException("Env property KEY_STORE_PASSWORD not set");\r
         }\r
         HashMap<String, Object> props = new HashMap<>();\r
         props.put("server.ssl.key-store-password", Password.deobfuscate(keyStorePassword));\r
-        new Application().configure(new SpringApplicationBuilder (Application.class).properties(props)).run(args);\r
+        new Application().configure(new SpringApplicationBuilder(Application.class).properties(props)).run(args);\r
     }\r
 }\r