diff options
author | Thugutla sailakshmi <tsaila10@in.ibm.com> | 2019-08-26 17:56:01 +0530 |
---|---|---|
committer | Thugutla sailakshmi <tsaila10@in.ibm.com> | 2019-08-26 17:57:55 +0530 |
commit | 18523825fc534151180b4c3bb2a3f335534edacf (patch) | |
tree | 332a9bd3ba5430f194496c0805d1e110805dea5a | |
parent | eaef5177f21eb3597dab07af1a9d6f1f3a395614 (diff) |
Immediately return this expression instead of assigning it to the temporary variable "responseWrapper2"
return the expression
Issue-ID: VID-561
Change-Id: I2a036a8181601c6cb6c5fd498c631ce9e5f5cbdb
Signed-off-by: Thugutla sailakshmi <tsaila10@in.ibm.com>
-rw-r--r-- | vid-app-common/src/main/java/org/onap/vid/controller/ChangeManagementController.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vid-app-common/src/main/java/org/onap/vid/controller/ChangeManagementController.java b/vid-app-common/src/main/java/org/onap/vid/controller/ChangeManagementController.java index 7bb94cb1c..cf855f3fe 100644 --- a/vid-app-common/src/main/java/org/onap/vid/controller/ChangeManagementController.java +++ b/vid-app-common/src/main/java/org/onap/vid/controller/ChangeManagementController.java @@ -4,6 +4,7 @@ * ================================================================================ * Copyright (C) 2017 - 2019 AT&T Intellectual Property. All rights reserved. * Modifications Copyright (C) 2018 - 2019 Nokia. All rights reserved. + * Modifications Copyright (C) 2019 IBM. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -205,8 +206,7 @@ public class ChangeManagementController extends UnRestrictedBaseController { private MsoResponseWrapperInterface exceptionHandler(Exception e, HttpStatus httpStatus) { LOGGER.error(EELFLoggerDelegate.errorLogger, "{}: {}", getMethodName(), ExceptionUtils.getMessage(e), e); - MsoResponseWrapper2<MsoExceptionResponse> responseWrapper2 = new MsoResponseWrapper2<>(httpStatus.value(), new MsoExceptionResponse(e)); - return responseWrapper2; + return new MsoResponseWrapper2<>(httpStatus.value(), new MsoExceptionResponse(e)); } } |