diff options
author | xu ran <xuranyjy@chinamobile.com> | 2020-05-14 03:11:17 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-05-14 03:11:17 +0000 |
commit | e490780cbf141a6e1d81ef256ea81bc023cb37e1 (patch) | |
tree | 8c6fb9b47e24047e887e0fe141c6908504d2eabe | |
parent | c583d6f8c6d7909ec08250a63dd797292b201889 (diff) | |
parent | 38aeea1e4710950b2f8e9ca1f552d7efb07b5a9c (diff) |
Merge "removed empty statements"
-rw-r--r-- | server/src/main/java/org/onap/usecaseui/server/service/sotn/impl/SOTNServiceImpl.java | 18 |
1 files changed, 9 insertions, 9 deletions
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; } |