From: Rupinder Date: Tue, 12 May 2020 09:08:49 +0000 (+0530) Subject: removed empty statements X-Git-Tag: 3.0.4~3^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=38aeea1e4710950b2f8e9ca1f552d7efb07b5a9c;p=usecase-ui%2Fserver.git removed empty statements Issue-ID: USECASEUI-423 Change-Id: I785d20da8640dfc5914ef269f493082fbca20f92 Signed-off-by: Rupinder --- diff --git a/server/src/main/java/org/onap/usecaseui/server/service/sotn/impl/SOTNServiceImpl.java b/server/src/main/java/org/onap/usecaseui/server/service/sotn/impl/SOTNServiceImpl.java index 5a132067..23d4d085 100644 --- a/server/src/main/java/org/onap/usecaseui/server/service/sotn/impl/SOTNServiceImpl.java +++ b/server/src/main/java/org/onap/usecaseui/server/service/sotn/impl/SOTNServiceImpl.java @@ -72,7 +72,7 @@ public class SOTNServiceImpl implements SOTNService{ } } catch (IOException e) { logger.error("getNetWorkResources occur exception:"+e); - result = CommonConstant.CONSTANT_FAILED;; + result = CommonConstant.CONSTANT_FAILED; } return result; } @@ -107,11 +107,11 @@ public class SOTNServiceImpl implements SOTNService{ result=new String(response.body().bytes()); } else { logger.info(String.format("Can not get getLogicalLinks[code=%s, message=%s]", response.code(), response.message())); - result= CommonConstant.CONSTANT_FAILED;; + result= CommonConstant.CONSTANT_FAILED; } } catch (IOException e) { logger.error("getLogicalLinks occur exception:"+e); - result= CommonConstant.CONSTANT_FAILED;; + result= CommonConstant.CONSTANT_FAILED; } return result; } @@ -151,7 +151,7 @@ public class SOTNServiceImpl implements SOTNService{ } } catch (IOException e) { logger.error("getHostUrl occur exception:"+e); - result= CommonConstant.CONSTANT_FAILED;; + result= CommonConstant.CONSTANT_FAILED; } return result; } @@ -171,7 +171,7 @@ public class SOTNServiceImpl implements SOTNService{ } } catch (IOException e) { logger.error("getExtAaiId occur exception:"+e); - result= CommonConstant.CONSTANT_FAILED;; + result= CommonConstant.CONSTANT_FAILED; } return result; } @@ -355,7 +355,7 @@ public class SOTNServiceImpl implements SOTNService{ } } catch (IOException e) { logger.error("getPnfInfo occur exception:"+e); - result= CommonConstant.CONSTANT_FAILED;; + result= CommonConstant.CONSTANT_FAILED; } return result; } @@ -375,7 +375,7 @@ public class SOTNServiceImpl implements SOTNService{ } } catch (IOException e) { logger.error("getAllottedResources occur exception:"+e); - result= CommonConstant.CONSTANT_FAILED;; + result= CommonConstant.CONSTANT_FAILED; } return result; } @@ -395,7 +395,7 @@ public class SOTNServiceImpl implements SOTNService{ } } catch (IOException e) { logger.error("getConnectivityInfo occur exception:"+e); - result= CommonConstant.CONSTANT_FAILED;; + result= CommonConstant.CONSTANT_FAILED; } return result; } @@ -415,7 +415,7 @@ public class SOTNServiceImpl implements SOTNService{ } } catch (IOException e) { logger.error("getPinterfaceByVpnId occur exception:"+e); - result= CommonConstant.CONSTANT_FAILED;; + result= CommonConstant.CONSTANT_FAILED; } return result; }