Immediately return this expression instead of assigning it to the temporary variable... 56/94256/1
authorThugutla sailakshmi <tsaila10@in.ibm.com>
Sun, 25 Aug 2019 16:57:24 +0000 (22:27 +0530)
committerThugutla sailakshmi <tsaila10@in.ibm.com>
Sun, 25 Aug 2019 16:58:44 +0000 (22:28 +0530)
return the expression

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

index befbe03..693c84b 100644 (file)
@@ -4,6 +4,7 @@
  * ================================================================================
  * Copyright (C) 2017 - 2019 AT&T Intellectual Property. All rights reserved.
  * Modifications Copyright (C) 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.
@@ -45,9 +46,7 @@ public final class ControllersUtils {
 
     public static ExceptionResponse handleException(Exception e, EELFLoggerDelegate logger) {
         logger.error(EELFLoggerDelegate.errorLogger, "{}: {}", getMethodCallerName(), ExceptionUtils.getMessage(e), e);
-
-        ExceptionResponse exceptionResponse = new ExceptionResponse(e);
-        return exceptionResponse;
+        return new ExceptionResponse(e);
     }
 
     public static ResponseEntity handleWebApplicationException(WebApplicationException e, EELFLoggerDelegate logger) {