Polishing
This commit is contained in:
parent
a0df71e76a
commit
503f0e3397
|
@ -236,7 +236,7 @@ public abstract class AbstractHandlerMethodMapping<T> extends AbstractHandlerMap
|
||||||
}
|
}
|
||||||
catch (Throwable ex) {
|
catch (Throwable ex) {
|
||||||
throw new IllegalStateException("Invalid mapping on handler class [" +
|
throw new IllegalStateException("Invalid mapping on handler class [" +
|
||||||
handlerType.getName() + "]: " + method, ex);
|
userType.getName() + "]: " + method, ex);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
|
@ -525,8 +525,8 @@ public final class RequestMappingInfo implements RequestCondition<RequestMapping
|
||||||
* <p>By default this is not set.
|
* <p>By default this is not set.
|
||||||
* @since 4.2.8
|
* @since 4.2.8
|
||||||
*/
|
*/
|
||||||
public void setUrlPathHelper(UrlPathHelper pathHelper) {
|
public void setUrlPathHelper(UrlPathHelper urlPathHelper) {
|
||||||
this.urlPathHelper = pathHelper;
|
this.urlPathHelper = urlPathHelper;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue