From 104f13e43ff2588e438e00f7ecf758b1846b1a4f Mon Sep 17 00:00:00 2001 From: Stevo Slavic Date: Fri, 2 Mar 2012 19:00:03 +0100 Subject: [PATCH] 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 --- .../org/springframework/web/multipart/MultipartResolver.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-web/src/main/java/org/springframework/web/multipart/MultipartResolver.java b/spring-web/src/main/java/org/springframework/web/multipart/MultipartResolver.java index 0e6a5baaba..3a74463530 100644 --- a/spring-web/src/main/java/org/springframework/web/multipart/MultipartResolver.java +++ b/spring-web/src/main/java/org/springframework/web/multipart/MultipartResolver.java @@ -24,10 +24,10 @@ import javax.servlet.http.HttpServletRequest; * Implementations are typically usable both within an application context * and standalone. * - *

There is only one concrete implementation included in Spring, - * as of Spring 2.5: + *

There are two concrete implementations included in Spring, as of Spring 3.1: *

* *

There is no default resolver implementation used for Spring