diff options
author | Dan Timoney <dtimoney@att.com> | 2018-12-11 15:31:40 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-12-11 15:31:40 +0000 |
commit | f811296beffa0773b20b30acc85df7e01c6fbd87 (patch) | |
tree | 094fb7b21dd4f79c0e7688962071c34a61170dd0 | |
parent | e6db2e201f38cc75d243c50f0026908210d3c27c (diff) | |
parent | cc93ca92ff6391d04e939c7b83fc99d7b100e5c3 (diff) |
Merge "fixed sonar issue in SvcLogicGraoh.java"
-rw-r--r-- | sli/common/src/main/java/org/onap/ccsdk/sli/core/sli/SvcLogicGraph.java | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/sli/common/src/main/java/org/onap/ccsdk/sli/core/sli/SvcLogicGraph.java b/sli/common/src/main/java/org/onap/ccsdk/sli/core/sli/SvcLogicGraph.java index cbac1544..97f2bd7a 100644 --- a/sli/common/src/main/java/org/onap/ccsdk/sli/core/sli/SvcLogicGraph.java +++ b/sli/common/src/main/java/org/onap/ccsdk/sli/core/sli/SvcLogicGraph.java @@ -1,10 +1,13 @@ /*- - * ============LICENSE_START======================================================= +x * ============LICENSE_START======================================================= * ONAP : CCSDK * ================================================================================ * Copyright (C) 2017 AT&T Intellectual Property. All rights * reserved. * ================================================================================ + * Modifications copyright (C) 2017 AT&T Intellectual Property. All rights + * reserved. + * ================================================================================ * 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 @@ -46,8 +49,8 @@ public class SvcLogicGraph implements Serializable { public SvcLogicGraph() { - attributes = new HashMap<String, Serializable>(); - namedNodes = new HashMap<String, SvcLogicNode>(); + attributes = new HashMap<>(); + namedNodes = new HashMap<>(); rootNode = null; } |