Skip to content

Commit 104f13e

Browse files
committed
Fix MultipartResolver javadoc implementation refs
Before this fix MultipartResolver javadoc mentioned that there is only one concrete implementation included in Spring. This was true as of Spring 2.5 but Spring 3.1 added another one, Servlet 3.0 Part API based implementation. This fix changes MultipartResolver javadoc so that the other one, StandardServletMultipartResolver implementation, gets also listed. Changed javadoc mentions also as of which version does Spring bundle two MultipartResolver implementations. Issue: SPR-5984
1 parent 6295f2b commit 104f13e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spring-web/src/main/java/org/springframework/web/multipart/MultipartResolver.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@
2424
* Implementations are typically usable both within an application context
2525
* and standalone.
2626
*
27-
* <p>There is only one concrete implementation included in Spring,
28-
* as of Spring 2.5:
27+
* <p>There are two concrete implementations included in Spring, as of Spring 3.1:
2928
* <ul>
3029
* <li>{@link org.springframework.web.multipart.commons.CommonsMultipartResolver} for Jakarta Commons FileUpload
30+
* <li>{@link org.springframework.web.multipart.support.StandardServletMultipartResolver} for Servlet 3.0 Part API
3131
* </ul>
3232
*
3333
* <p>There is no default resolver implementation used for Spring

0 commit comments

Comments
 (0)