Skip to content

Commit 5f7f37f

Browse files
committed
polishing
1 parent 572abbc commit 5f7f37f

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

org.springframework.web.servlet/src/main/java/org/springframework/web/servlet/handler/AbstractUrlHandlerMapping.java

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2009 the original author or authors.
2+
* Copyright 2002-2010 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -303,10 +303,8 @@ protected void validateHandler(Object handler, HttpServletRequest request) throw
303303
* @param uriTemplateVariables the URI template variables, can be <code>null</code> if no variables found
304304
* @return the final handler object
305305
*/
306-
protected Object buildPathExposingHandler(Object rawHandler,
307-
String bestMatchingPattern,
308-
String pathWithinMapping,
309-
Map<String, String> uriTemplateVariables) {
306+
protected Object buildPathExposingHandler(Object rawHandler, String bestMatchingPattern,
307+
String pathWithinMapping, Map<String, String> uriTemplateVariables) {
310308

311309
HandlerExecutionChain chain = new HandlerExecutionChain(rawHandler);
312310
chain.addInterceptor(new PathExposingHandlerInterceptor(bestMatchingPattern, pathWithinMapping));

0 commit comments

Comments
 (0)