From 40a702bf21b8cc1582041d9b4622bc9b13b72761 Mon Sep 17 00:00:00 2001 From: ezhil Date: Thu, 3 Jan 2019 22:12:43 +0530 Subject: [PATCH] Fixed sonar issue in Utils.java Change-Id: I5edf48443c10f08200b0ea376194a9a8fc6dc29a Issue-ID: APPC-1302 Signed-off-by: ezhil --- .../java/org/onap/appc/adapter/chef/chefclient/impl/Utils.java | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/appc-adapters/appc-chef-adapter/appc-chef-adapter-bundle/src/main/java/org/onap/appc/adapter/chef/chefclient/impl/Utils.java b/appc-adapters/appc-chef-adapter/appc-chef-adapter-bundle/src/main/java/org/onap/appc/adapter/chef/chefclient/impl/Utils.java index 169b2c13d..0e30d07cb 100644 --- a/appc-adapters/appc-chef-adapter/appc-chef-adapter-bundle/src/main/java/org/onap/appc/adapter/chef/chefclient/impl/Utils.java +++ b/appc-adapters/appc-chef-adapter/appc-chef-adapter-bundle/src/main/java/org/onap/appc/adapter/chef/chefclient/impl/Utils.java @@ -6,6 +6,7 @@ * ================================================================================ * Copyright (C) 2017 Amdocs * ============================================================================= + * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at @@ -75,13 +76,7 @@ public class Utils { byte[] signature = instance.sign(); outStr = Base64.encode(signature); String tmp = new String(outStr); - } catch (InvalidKeyException e) { - logger.error(e.getMessage()); - } catch (IOException e) { - logger.error(e.getMessage()); - } catch (SignatureException e) { - logger.error(e.getMessage()); - } catch (NoSuchAlgorithmException e) { + } catch (InvalidKeyException | IOException | SignatureException | NoSuchAlgorithmException e) { logger.error(e.getMessage()); } return new String(outStr); -- 2.16.6