Format Java code with respect to ONAP Code Style
[externalapi/nbi.git] / src / main / java / org / onap / nbi / apis / serviceorder / ServiceInventoryUrl.java
index 69b8f42..d057da7 100644 (file)
@@ -13,8 +13,8 @@
  *     See the License for the specific language governing permissions and
  *     limitations under the License.
  */
-package org.onap.nbi.apis.serviceorder;
 
+package org.onap.nbi.apis.serviceorder;
 
 import org.springframework.beans.factory.annotation.Value;
 import org.springframework.stereotype.Service;
@@ -25,12 +25,10 @@ public class ServiceInventoryUrl {
     @Value("${nbi.url}")
     private String nbiUrl;
 
-
     public String getServiceInventoryUrl() {
 
         return new StringBuilder().append(nbiUrl).append("/service/").toString();
 
     }
 
-
 }