Fix SonarQube Violations
[cps.git] / cps-service / src / main / java / org / onap / cps / api / impl / CpsDataServiceImpl.java
old mode 100644 (file)
new mode 100755 (executable)
index 26990de..d7d25b9
@@ -54,7 +54,7 @@ public class CpsDataServiceImpl implements CpsDataService {
     public void saveData(final String dataspaceName, final String anchorName, final String jsonData) {
         final Anchor anchor = cpsAdminService.getAnchor(dataspaceName, anchorName);
         final SchemaContext schemaContext = getSchemaContext(dataspaceName, anchor.getSchemaSetName());
-        final NormalizedNode normalizedNode = YangUtils.parseJsonData(jsonData, schemaContext);
+        final NormalizedNode<?, ?> normalizedNode = YangUtils.parseJsonData(jsonData, schemaContext);
         final DataNode dataNode = new DataNodeBuilder().withNormalizedNodeTree(normalizedNode).build();
         cpsDataPersistenceService.storeDataNode(dataspaceName, anchor.getName(), dataNode);
     }