Skip to content

Commit ed3fd12

Browse files
izeyesdeleuze
authored andcommitted
Add missing @since tags in MockHttpServletRequestDsl
This commit adds missing `@since` tags for formField() and formFields in MockHttpServletRequestDsl. See spring-projectsgh-34412 related issue. Closes spring-projectsgh-34448 Signed-off-by: Johnny Lim <[email protected]>
1 parent 6f596e2 commit ed3fd12

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

spring-test/src/main/kotlin/org/springframework/test/web/servlet/MockHttpServletRequestDsl.kt

+2
Original file line numberDiff line numberDiff line change
@@ -130,13 +130,15 @@ open class MockHttpServletRequestDsl(private val builder: AbstractMockHttpServle
130130
var queryParams: MultiValueMap<String, String>? = null
131131

132132
/**
133+
* @since 6.2.3
133134
* @see [MockHttpServletRequestBuilder.formField]
134135
*/
135136
fun formField(name: String, vararg values: String) {
136137
builder.formField(name, *values)
137138
}
138139

139140
/**
141+
* @since 6.2.3
140142
* @see [MockHttpServletRequestBuilder.formFields]
141143
*/
142144
var formFields: MultiValueMap<String, String>? = null

0 commit comments

Comments
 (0)