[AAI-12] Add the swagger documentation for onap
[aai/aai-common.git] / aai-core / src / main / java / org / openecomp / aai / serialization / queryformats / utils / UrlBuilder.java
index 50e50e4..817a679 100644 (file)
@@ -51,11 +51,11 @@ public class UrlBuilder {
                try {
                        final StringBuilder result = new StringBuilder();
                        final URI uri = this.serializer.getURIForVertex(v);
-       
+
                        result.append(this.serverBase);
                        result.append(this.version);
                        result.append(uri.getRawPath());
-       
+
                        return result.toString();
                } catch (UnsupportedEncodingException | IllegalArgumentException | SecurityException e) {
                        throw new AAIFormatVertexException(e);