From: anushadasari Date: Mon, 18 Nov 2019 15:21:29 +0000 (+0530) Subject: Remove the declaration of thrown exception X-Git-Tag: 2.2.0~28 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=937af8afe422a6d65531cbc45b3a5f58fb625ddd;p=optf%2Fcmso.git Remove the declaration of thrown exception Remove the declaration of thrown exception 'com.fasterxml.jackson.core.JsonParseException' which is a subclass of 'java.io.IOException'. Issue-ID: OPTFRA-632 Change-Id: Ibce8815c9c1edc3308ee00f2eb6063396dee133c Signed-off-by: anushadasari --- diff --git a/cmso-optimizer/src/main/java/org/onap/optf/cmso/optimizer/clients/topology/TopologyRequestManager.java b/cmso-optimizer/src/main/java/org/onap/optf/cmso/optimizer/clients/topology/TopologyRequestManager.java index f62a851..a3f4e6d 100644 --- a/cmso-optimizer/src/main/java/org/onap/optf/cmso/optimizer/clients/topology/TopologyRequestManager.java +++ b/cmso-optimizer/src/main/java/org/onap/optf/cmso/optimizer/clients/topology/TopologyRequestManager.java @@ -96,8 +96,7 @@ public class TopologyRequestManager { * @throws JsonMappingException the json mapping exception * @throws IOException Signals that an I/O exception has occurred. */ - public TopologyResponse getTopologyResponse(UUID uuid) - throws JsonParseException, JsonMappingException, IOException { + public TopologyResponse getTopologyResponse(UUID uuid) throws IOException { Topology row = getExistingTopology(uuid); if (row != null) { String responseString = row.getTopology();