Add missing @since tags in MockHttpServletRequestDsl
This commit adds missing `@since` tags for formField() and formFields in MockHttpServletRequestDsl. See gh-34412 related issue. Closes gh-34448 Signed-off-by: Johnny Lim <izeye@naver.com>
This commit is contained in:
committed by
Sébastien Deleuze
parent
6f596e2e84
commit
ed3fd12210
@@ -130,6 +130,7 @@ open class MockHttpServletRequestDsl(private val builder: AbstractMockHttpServle
|
||||
var queryParams: MultiValueMap<String, String>? = null
|
||||
|
||||
/**
|
||||
* @since 6.2.3
|
||||
* @see [MockHttpServletRequestBuilder.formField]
|
||||
*/
|
||||
fun formField(name: String, vararg values: String) {
|
||||
@@ -137,6 +138,7 @@ open class MockHttpServletRequestDsl(private val builder: AbstractMockHttpServle
|
||||
}
|
||||
|
||||
/**
|
||||
* @since 6.2.3
|
||||
* @see [MockHttpServletRequestBuilder.formFields]
|
||||
*/
|
||||
var formFields: MultiValueMap<String, String>? = null
|
||||
|
||||
Reference in New Issue
Block a user