Reduce the number of problems in aai-common by removing unused imports
[aai/aai-common.git] / aai-utils / src / main / java / org / onap / aaiutils / oxm / OxmModelLoaderConstants.java
index f5494ba..61e8acf 100644 (file)
@@ -25,11 +25,9 @@ package org.onap.aaiutils.oxm;
 public class OxmModelLoaderConstants {
 
     public static final String AaiUtils_FILESEP =
-        (System.getProperty("file.separator") == null) ? "/" : System.getProperty("file.separator");
+            (System.getProperty("file.separator") == null) ? "/" : System.getProperty("file.separator");
 
-    public static final String AaiUtils_SPECIFIC_CONFIG =
-        System.getProperty("CONFIG_HOME") + AaiUtils_FILESEP;
+    public static final String AaiUtils_SPECIFIC_CONFIG = System.getProperty("CONFIG_HOME") + AaiUtils_FILESEP;
 
-    public static final String AaiUtils_HOME_MODEL =
-        AaiUtils_SPECIFIC_CONFIG + "model" + AaiUtils_FILESEP;
+    public static final String AaiUtils_HOME_MODEL = AaiUtils_SPECIFIC_CONFIG + "model" + AaiUtils_FILESEP;
 }