added a TODO to remove the Serializable implementation once we upgrade to 3.0.1

This commit is contained in:
Mark Fisher
2010-01-26 17:33:31 +00:00
parent c9d865176a
commit 095f31d61c

View File

@@ -301,7 +301,7 @@ public class DefaultInboundRequestMapper implements InboundRequestMapper {
* (e.g. put, add, or remove) will result in an UnsupportedOperationException.
*/
private static class UnmodifiableRequestParameterMap
extends LinkedMultiValueMap<String, String> implements Serializable {
extends LinkedMultiValueMap<String, String> implements Serializable { // TODO: in 3.0.1 LMVM implements Serializable
UnmodifiableRequestParameterMap(Map<String, String[]> parameters) {
for (Map.Entry<String, String[]> entry : parameters.entrySet()) {