Polishing

This commit is contained in:
Juergen Hoeller 2016-07-15 17:27:59 +02:00
parent a0df71e76a
commit 503f0e3397
2 changed files with 3 additions and 3 deletions

View File

@ -236,7 +236,7 @@ public abstract class AbstractHandlerMethodMapping<T> extends AbstractHandlerMap
}
catch (Throwable ex) {
throw new IllegalStateException("Invalid mapping on handler class [" +
handlerType.getName() + "]: " + method, ex);
userType.getName() + "]: " + method, ex);
}
}
});

View File

@ -525,8 +525,8 @@ public final class RequestMappingInfo implements RequestCondition<RequestMapping
* <p>By default this is not set.
* @since 4.2.8
*/
public void setUrlPathHelper(UrlPathHelper pathHelper) {
this.urlPathHelper = pathHelper;
public void setUrlPathHelper(UrlPathHelper urlPathHelper) {
this.urlPathHelper = urlPathHelper;
}
/**