diff options
author | Sourabh Sourabh <sourabh.sourabh@est.tech> | 2024-10-08 15:51:01 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2024-10-08 15:51:01 +0000 |
commit | e2517a8b993ed884edb251b91ce600d0a1a9fefe (patch) | |
tree | e26cc91a338b296275ee6d579a3a3394c4eb0ade /cps-service | |
parent | c024f967a84719b0ce6d2c546be4c31d496b6e22 (diff) | |
parent | 77e469b27708d2fabe6281082716a8c086f8107d (diff) |
Merge "Policy Executor: handle errors, part 2 (fighting between IntelliJ and Checkstyle best practices)"
Diffstat (limited to 'cps-service')
-rw-r--r-- | cps-service/pom.xml | 6 | ||||
-rw-r--r-- | cps-service/src/main/java/org/onap/cps/utils/YangParserHelper.java | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/cps-service/pom.xml b/cps-service/pom.xml index 6e53c2d971..68cd206c96 100644 --- a/cps-service/pom.xml +++ b/cps-service/pom.xml @@ -64,6 +64,11 @@ <groupId>com.github.ben-manes.caffeine</groupId> <artifactId>caffeine</artifactId> </dependency> + <!-- Disable SpotBug Rules --> + <dependency> + <groupId>com.github.spotbugs</groupId> + <artifactId>spotbugs-annotations</artifactId> + </dependency> <dependency> <!-- For parsing JSON object --> <groupId>com.google.code.gson</groupId> @@ -139,6 +144,7 @@ <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> + <!-- T E S T D E P E N D E N C I E S --> <dependency> <groupId>org.codehaus.groovy</groupId> diff --git a/cps-service/src/main/java/org/onap/cps/utils/YangParserHelper.java b/cps-service/src/main/java/org/onap/cps/utils/YangParserHelper.java index a5865be657..d95aceaf79 100644 --- a/cps-service/src/main/java/org/onap/cps/utils/YangParserHelper.java +++ b/cps-service/src/main/java/org/onap/cps/utils/YangParserHelper.java @@ -22,6 +22,7 @@ package org.onap.cps.utils; import com.google.gson.JsonSyntaxException; import com.google.gson.stream.JsonReader; +import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; import java.io.IOException; import java.io.StringReader; import java.net.URISyntaxException; @@ -128,6 +129,7 @@ public class YangParserHelper { return dataContainerNodeBuilder.build(); } + @SuppressFBWarnings(value = "DCN_NULLPOINTER_EXCEPTION", justification = "Problem originates in 3PP code") private ContainerNode parseXmlData(final String xmlData, final SchemaContext schemaContext, final String parentNodeXpath) { |