diff options
author | William Reehil <william.reehil@att.com> | 2020-07-13 17:35:30 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-07-13 17:35:30 +0000 |
commit | a5a949ede6d5cce369dcd49de8f946f1df917520 (patch) | |
tree | 06defd12253ca9aee1ca5d6b6ef7b60d69cd7137 /aai-rest | |
parent | 32034a1eddf0f761ac246567f087e410d18e4edc (diff) | |
parent | f2b425d077b4256ccdf2accab4e4e08186415ff6 (diff) |
Merge "Fix minor sonar issues"
Diffstat (limited to 'aai-rest')
-rw-r--r-- | aai-rest/src/main/java/org/onap/aai/restclient/ClientType.java | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/aai-rest/src/main/java/org/onap/aai/restclient/ClientType.java b/aai-rest/src/main/java/org/onap/aai/restclient/ClientType.java index 4633b425..9ca9a7c2 100644 --- a/aai-rest/src/main/java/org/onap/aai/restclient/ClientType.java +++ b/aai-rest/src/main/java/org/onap/aai/restclient/ClientType.java @@ -1,4 +1,4 @@ -/** +/* * ============LICENSE_START======================================================= * org.onap.aai * ================================================================================ @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * + * <p> + * http://www.apache.org/licenses/LICENSE-2.0 + * <p> * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -22,4 +22,7 @@ package org.onap.aai.restclient; public class ClientType { public static final String AAI = "aai-rest-client"; + + private ClientType() { + } } |