From 937af8afe422a6d65531cbc45b3a5f58fb625ddd Mon Sep 17 00:00:00 2001 From: anushadasari Date: Mon, 18 Nov 2019 20:51:29 +0530 Subject: 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 --- .../optf/cmso/optimizer/clients/topology/TopologyRequestManager.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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(); -- cgit 1.2.3-korg