From 863f97dc110de517982274c4c5bf61e0f04f5926 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Mon, 19 Dec 2016 11:30:38 +0100 Subject: [PATCH] Polish since version Closes gh-7412 --- .../boot/test/web/client/TestRestTemplate.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-boot-test/src/main/java/org/springframework/boot/test/web/client/TestRestTemplate.java b/spring-boot-test/src/main/java/org/springframework/boot/test/web/client/TestRestTemplate.java index 883f012140..3cb73a2a52 100644 --- a/spring-boot-test/src/main/java/org/springframework/boot/test/web/client/TestRestTemplate.java +++ b/spring-boot-test/src/main/java/org/springframework/boot/test/web/client/TestRestTemplate.java @@ -576,7 +576,7 @@ public class TestRestTemplate { * @return the converted object * @throws RestClientException on client-side HTTP error * @see HttpEntity - * @since 2.0 + * @since 1.4.3 */ T patchForObject(String url, Object request, Class responseType, Object... uriVariables) throws RestClientException { @@ -599,7 +599,7 @@ public class TestRestTemplate { * @return the converted object * @throws RestClientException on client-side HTTP error * @see HttpEntity - * @since 2.0 + * @since 1.4.3 */ T patchForObject(String url, Object request, Class responseType, Map uriVariables) throws RestClientException { @@ -619,7 +619,7 @@ public class TestRestTemplate { * @return the converted object * @throws RestClientException on client-side HTTP error * @see HttpEntity - * @since 2.0 + * @since 1.4.3 */ T patchForObject(URI url, Object request, Class responseType) throws RestClientException {