diff options
author | JvD_Ericsson <jeff.van.dam@est.tech> | 2020-08-06 10:00:32 +0100 |
---|---|---|
committer | JvD_Ericsson <jeff.van.dam@est.tech> | 2020-08-07 13:59:20 +0100 |
commit | dc2b85e4ae6db95a0c09494a928ee6fbdf95594e (patch) | |
tree | d51499c785a2526d4f401b6d1e650cbae9ec7d38 /model/basic-model | |
parent | 56e4f452342da2d0a9e0fb822c68b3440476092a (diff) |
Sonar Fixes
Replace the type specification in this constructor call with the diamond operator
and other small fixes
Signed-off-by: JvD_Ericsson <jeff.van.dam@est.tech>
Issue-ID: POLICY-2760
Change-Id: I83821859a4a1dbbffbaeae15281abac2de3b5712
Diffstat (limited to 'model/basic-model')
-rw-r--r-- | model/basic-model/src/main/java/org/onap/policy/apex/model/basicmodel/concepts/AxKeyInformation.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/model/basic-model/src/main/java/org/onap/policy/apex/model/basicmodel/concepts/AxKeyInformation.java b/model/basic-model/src/main/java/org/onap/policy/apex/model/basicmodel/concepts/AxKeyInformation.java index fc876d8ea..446a00a68 100644 --- a/model/basic-model/src/main/java/org/onap/policy/apex/model/basicmodel/concepts/AxKeyInformation.java +++ b/model/basic-model/src/main/java/org/onap/policy/apex/model/basicmodel/concepts/AxKeyInformation.java @@ -1,7 +1,7 @@ /*- * ============LICENSE_START======================================================= * Copyright (C) 2016-2018 Ericsson. All rights reserved. - * Modifications Copyright (C) 2019 Nordix Foundation. + * Modifications Copyright (C) 2019-2020 Nordix Foundation. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -100,7 +100,7 @@ public class AxKeyInformation extends AxConcept implements AxConceptGetter<AxKey * @param key the key of the concept */ public AxKeyInformation(final AxArtifactKey key) { - this(key, new TreeMap<AxArtifactKey, AxKeyInfo>()); + this(key, new TreeMap<>()); } /** |