Commit 6cb18835 authored by Andy Wilkinson's avatar Andy Wilkinson

Reorder javadoc at-clauses to appease the Checkstyle gods

parent 269bb914
...@@ -249,8 +249,8 @@ public class RestTemplateBuilder { ...@@ -249,8 +249,8 @@ public class RestTemplateBuilder {
* previously defined interceptors. * previously defined interceptors.
* @param interceptors the interceptors to set * @param interceptors the interceptors to set
* @return a new builder instance * @return a new builder instance
* @see #additionalInterceptors(ClientHttpRequestInterceptor...)
* @since 1.4.1 * @since 1.4.1
* @see #additionalInterceptors(ClientHttpRequestInterceptor...)
*/ */
public RestTemplateBuilder interceptors( public RestTemplateBuilder interceptors(
ClientHttpRequestInterceptor... interceptors) { ClientHttpRequestInterceptor... interceptors) {
...@@ -264,8 +264,8 @@ public class RestTemplateBuilder { ...@@ -264,8 +264,8 @@ public class RestTemplateBuilder {
* previously defined interceptors. * previously defined interceptors.
* @param interceptors the interceptors to set * @param interceptors the interceptors to set
* @return a new builder instance * @return a new builder instance
* @see #additionalInterceptors(ClientHttpRequestInterceptor...)
* @since 1.4.1 * @since 1.4.1
* @see #additionalInterceptors(ClientHttpRequestInterceptor...)
*/ */
public RestTemplateBuilder interceptors( public RestTemplateBuilder interceptors(
Collection<ClientHttpRequestInterceptor> interceptors) { Collection<ClientHttpRequestInterceptor> interceptors) {
...@@ -282,8 +282,8 @@ public class RestTemplateBuilder { ...@@ -282,8 +282,8 @@ public class RestTemplateBuilder {
* that should be used with the {@link RestTemplate}. * that should be used with the {@link RestTemplate}.
* @param interceptors the interceptors to add * @param interceptors the interceptors to add
* @return a new builder instance * @return a new builder instance
* @see #interceptors(ClientHttpRequestInterceptor...)
* @since 1.4.1 * @since 1.4.1
* @see #interceptors(ClientHttpRequestInterceptor...)
*/ */
public RestTemplateBuilder additionalInterceptors( public RestTemplateBuilder additionalInterceptors(
ClientHttpRequestInterceptor... interceptors) { ClientHttpRequestInterceptor... interceptors) {
...@@ -296,8 +296,8 @@ public class RestTemplateBuilder { ...@@ -296,8 +296,8 @@ public class RestTemplateBuilder {
* that should be used with the {@link RestTemplate}. * that should be used with the {@link RestTemplate}.
* @param interceptors the interceptors to add * @param interceptors the interceptors to add
* @return a new builder instance * @return a new builder instance
* @see #interceptors(ClientHttpRequestInterceptor...)
* @since 1.4.1 * @since 1.4.1
* @see #interceptors(ClientHttpRequestInterceptor...)
*/ */
public RestTemplateBuilder additionalInterceptors( public RestTemplateBuilder additionalInterceptors(
Collection<? extends ClientHttpRequestInterceptor> interceptors) { Collection<? extends ClientHttpRequestInterceptor> interceptors) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment