From f3d4d722c4fcfe84b8e88eca6dd02543bec013b6 Mon Sep 17 00:00:00 2001 From: luxin Date: Tue, 30 Jan 2018 09:51:10 +0800 Subject: Remove printStackTrace of exception Change-Id: Icc2749ba0d5de8875102b78846064326a3d6d281 Issue-ID: VFC-672 Signed-off-by: luxin --- .../nfvo/resmanagement/common/util/restclient/HttpsRest.java | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/ResmanagementService/service/src/main/java/org/onap/vfc/nfvo/resmanagement/common/util/restclient/HttpsRest.java b/ResmanagementService/service/src/main/java/org/onap/vfc/nfvo/resmanagement/common/util/restclient/HttpsRest.java index 1ae1ca4..e8fa42a 100644 --- a/ResmanagementService/service/src/main/java/org/onap/vfc/nfvo/resmanagement/common/util/restclient/HttpsRest.java +++ b/ResmanagementService/service/src/main/java/org/onap/vfc/nfvo/resmanagement/common/util/restclient/HttpsRest.java @@ -44,7 +44,6 @@ public class HttpsRest extends HttpBaseRest { client.start(); } catch(Exception e) { LOG.error("Exception", e); - e.printStackTrace(); } } @@ -169,7 +168,6 @@ public class HttpsRest extends HttpBaseRest { client.send(exchange); } catch(IOException e) { LOG.error("IOException", e); - e.printStackTrace(); } try { int exchangeState = exchange.waitForDone(); @@ -190,10 +188,8 @@ public class HttpsRest extends HttpBaseRest { } } catch(InterruptedException e) { LOG.error("InterruptedException", e); - e.printStackTrace(); } catch(UnsupportedEncodingException e) { LOG.error("UnsupportedEncodingException", e); - e.printStackTrace(); } return null; } @@ -213,7 +209,6 @@ public class HttpsRest extends HttpBaseRest { client.send(exchange); } catch(IOException e) { LOG.error("IOException", e); - e.printStackTrace(); } try { @@ -235,10 +230,8 @@ public class HttpsRest extends HttpBaseRest { } } catch(InterruptedException e) { LOG.error("InterruptedException", e); - e.printStackTrace(); } catch(UnsupportedEncodingException e) { LOG.error("UnsupportedEncodingException", e); - e.printStackTrace(); } return null; } @@ -266,7 +259,6 @@ public class HttpsRest extends HttpBaseRest { client.send(exchange); } catch(IOException e) { LOG.error("IOException", e); - e.printStackTrace(); } try { @@ -288,10 +280,8 @@ public class HttpsRest extends HttpBaseRest { } } catch(InterruptedException e) { LOG.error("InterruptedException", e); - e.printStackTrace(); } catch(UnsupportedEncodingException e) { LOG.error("InterruptedException", e); - e.printStackTrace(); } return null; } -- cgit 1.2.3-korg