Replaced all tabs with spaces in java and pom.xml
[so.git] / common / src / main / java / org / onap / so / client / DefaultProperties.java
index 84509ea..7d70cff 100644 (file)
@@ -25,18 +25,20 @@ import java.net.URL;
 
 public class DefaultProperties implements RestProperties {
 
-       private final URL url;
-       public DefaultProperties(URL url) {
-               this.url = url;
-       }
-       @Override
-       public URL getEndpoint() throws MalformedURLException {
-               return this.url;
-       }
-
-       @Override
-       public String getSystemName() {
-               return RestClient.ECOMP_COMPONENT_NAME;
-       }
+    private final URL url;
+
+    public DefaultProperties(URL url) {
+        this.url = url;
+    }
+
+    @Override
+    public URL getEndpoint() throws MalformedURLException {
+        return this.url;
+    }
+
+    @Override
+    public String getSystemName() {
+        return RestClient.ECOMP_COMPONENT_NAME;
+    }
 
 }