diff options
-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)); } } |