From: anushadasari Date: Mon, 18 Nov 2019 15:24:36 +0000 (+0530) Subject: Remove the declaration of thrown exception X-Git-Tag: 2.2.0~27 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F16%2F98516%2F1;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: I3e5778420d19d98a625590cc547a8590b0d9641a Signed-off-by: anushadasari --- diff --git a/cmso-optimizer/src/main/java/org/onap/optf/cmso/optimizer/clients/ticketmgt/TicketMgtClient.java b/cmso-optimizer/src/main/java/org/onap/optf/cmso/optimizer/clients/ticketmgt/TicketMgtClient.java index 1ba21e0..109493b 100644 --- a/cmso-optimizer/src/main/java/org/onap/optf/cmso/optimizer/clients/ticketmgt/TicketMgtClient.java +++ b/cmso-optimizer/src/main/java/org/onap/optf/cmso/optimizer/clients/ticketmgt/TicketMgtClient.java @@ -119,7 +119,7 @@ public class TicketMgtClient { } private ActiveTicketsRequest buildRequest(OptimizerRequest optimizerRequest) - throws JsonParseException, JsonMappingException, IOException { + throws IOException { UUID uuid = UUID.fromString(optimizerRequest.getRequestId()); Topology topologyRow = topologyRequestManager.getExistingTopology(uuid); String topologyString = topologyRow.getTopology();