aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/nbi/commons/JsonRepresentation.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/onap/nbi/commons/JsonRepresentation.java')
-rw-r--r--src/main/java/org/onap/nbi/commons/JsonRepresentation.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main/java/org/onap/nbi/commons/JsonRepresentation.java b/src/main/java/org/onap/nbi/commons/JsonRepresentation.java
index 7f1f1db..eccbf70 100644
--- a/src/main/java/org/onap/nbi/commons/JsonRepresentation.java
+++ b/src/main/java/org/onap/nbi/commons/JsonRepresentation.java
@@ -13,6 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
+
package org.onap.nbi.commons;
import java.util.LinkedHashSet;
@@ -23,7 +24,8 @@ public class JsonRepresentation {
private Set<String> attributes = new LinkedHashSet<>();
- public JsonRepresentation() {}
+ public JsonRepresentation() {
+ }
public JsonRepresentation(MultiValueMap<String, String> queryParameters) {
this.attributes = QueryParserUtils.getFields(queryParameters);