Immediately return this expression instead of assigning it to the temporary variable... 73/94273/1
authorThugutla sailakshmi <tsaila10@in.ibm.com>
Mon, 26 Aug 2019 12:26:01 +0000 (17:56 +0530)
committerThugutla sailakshmi <tsaila10@in.ibm.com>
Mon, 26 Aug 2019 12:27:55 +0000 (17:57 +0530)
return the expression

Issue-ID: VID-561
Change-Id: I2a036a8181601c6cb6c5fd498c631ce9e5f5cbdb
Signed-off-by: Thugutla sailakshmi <tsaila10@in.ibm.com>
vid-app-common/src/main/java/org/onap/vid/controller/ChangeManagementController.java

index 7bb94cb..cf855f3 100644 (file)
@@ -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));
     }
 
 }