From 8fdfe4bdac025f450d6b9ea70d7c48afa98fc37e Mon Sep 17 00:00:00 2001 From: Chris Ramstad Date: Tue, 17 Mar 2020 11:52:02 -0700 Subject: Misc simple sonar issue fixes Issue-ID: POLICY-2389 Signed-off-by: Chris Ramstad Change-Id: I7ce91e331a128aaadaab5ac837e19873a3388164 --- .../src/main/java/org/onap/policy/models/base/PfUtils.java | 10 +++++----- .../src/main/java/org/onap/policy/models/base/Validated.java | 1 + 2 files changed, 6 insertions(+), 5 deletions(-) (limited to 'models-base') diff --git a/models-base/src/main/java/org/onap/policy/models/base/PfUtils.java b/models-base/src/main/java/org/onap/policy/models/base/PfUtils.java index 8f1040bfe..fa7d21f9d 100644 --- a/models-base/src/main/java/org/onap/policy/models/base/PfUtils.java +++ b/models-base/src/main/java/org/onap/policy/models/base/PfUtils.java @@ -26,7 +26,7 @@ import java.util.LinkedHashMap; import java.util.List; import java.util.Map; import java.util.Map.Entry; -import java.util.function.Function; +import java.util.function.UnaryOperator; import java.util.stream.Collectors; import javax.ws.rs.core.Response; @@ -76,7 +76,7 @@ public final class PfUtils { * @param defaultValue value to be returned if source is {@code null} * @return a new list, containing mappings of all of the items in the original list */ - public static List mapList(List source, Function mapFunc, List defaultValue) { + public static List mapList(List source, UnaryOperator mapFunc, List defaultValue) { if (source == null) { return defaultValue; } @@ -93,7 +93,7 @@ public final class PfUtils { * @return a new list, containing mappings of all of the items in the original list, * or {@code null} if the source is {@code null} */ - public static List mapList(List source, Function mapFunc) { + public static List mapList(List source, UnaryOperator mapFunc) { return mapList(source, mapFunc, null); } @@ -106,7 +106,7 @@ public final class PfUtils { * @param defaultValue value to be returned if source is {@code null} * @return a new map, containing mappings of all of the items in the original map */ - public static Map mapMap(Map source, Function mapFunc, + public static Map mapMap(Map source, UnaryOperator mapFunc, Map defaultValue) { if (source == null) { return defaultValue; @@ -129,7 +129,7 @@ public final class PfUtils { * @return a new map, containing mappings of all of the items in the original map, * or {@code null} if the source is {@code null} */ - public static Map mapMap(Map source, Function mapFunc) { + public static Map mapMap(Map source, UnaryOperator mapFunc) { return mapMap(source, mapFunc, null); } diff --git a/models-base/src/main/java/org/onap/policy/models/base/Validated.java b/models-base/src/main/java/org/onap/policy/models/base/Validated.java index 7a0a8377b..26a8a5260 100644 --- a/models-base/src/main/java/org/onap/policy/models/base/Validated.java +++ b/models-base/src/main/java/org/onap/policy/models/base/Validated.java @@ -70,6 +70,7 @@ public class Validated { * @param result where to place the result * @return the result */ + @SuppressWarnings("java:S3252") // squelch sonar warning for using PkConceptKey instead of PfKeyImpl public PfValidationResult validateNotNull(@NonNull PfConceptKey value, @NonNull PfValidationResult result) { if (PfConceptKey.NULL_KEY_NAME.equals(value.getName())) { -- cgit 1.2.3-korg