Replaced all tabs with spaces in java and pom.xml
[so.git] / adapters / mso-openstack-adapters / src / main / java / org / onap / so / adapters / audit / AbstractAudit.java
index 292cebf..ad28f0d 100644 (file)
@@ -23,17 +23,17 @@ package org.onap.so.adapters.audit;
 import org.onap.so.client.aai.AAIResourcesClient;
 
 public class AbstractAudit {
-       
-       private AAIResourcesClient aaiClient;
 
-       protected AAIResourcesClient getAaiClient(){
-               if(aaiClient == null)
-                       return new AAIResourcesClient();
-               else
-                       return aaiClient;
-       }
-       
-       protected void setAaiClient(AAIResourcesClient aaiResource){
-               aaiClient = aaiResource;
-       }
+    private AAIResourcesClient aaiClient;
+
+    protected AAIResourcesClient getAaiClient() {
+        if (aaiClient == null)
+            return new AAIResourcesClient();
+        else
+            return aaiClient;
+    }
+
+    protected void setAaiClient(AAIResourcesClient aaiResource) {
+        aaiClient = aaiResource;
+    }
 }