Skip to content

Commit 61601de

Browse files
committed
Polish formatting
See gh-27801
1 parent 4453102 commit 61601de

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

spring-webmvc/src/main/java/org/springframework/web/servlet/mvc/method/annotation/ExceptionHandlerExceptionResolver.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,8 @@ protected ServletInvocableHandlerMethod getExceptionHandlerMethod(
476476
// Local exception handler methods on the controller class itself.
477477
// To be invoked through the proxy, even in case of an interface-based proxy.
478478
handlerType = handlerMethod.getBeanType();
479-
ExceptionHandlerMethodResolver resolver = this.exceptionHandlerCache.computeIfAbsent(handlerType, ExceptionHandlerMethodResolver::new);
479+
ExceptionHandlerMethodResolver resolver = this.exceptionHandlerCache.computeIfAbsent(
480+
handlerType, ExceptionHandlerMethodResolver::new);
480481
Method method = resolver.resolveMethod(exception);
481482
if (method != null) {
482483
return new ServletInvocableHandlerMethod(handlerMethod.getBean(), method, this.applicationContext);

0 commit comments

Comments
 (0)