Skip to content

Commit

Permalink
Merge pull request #1090 from felipeweb/issue_1089
Browse files Browse the repository at this point in the history
implements serializable on MessageList.class
  • Loading branch information
Turini committed Mar 22, 2017
2 parents 4e1cff8 + b843eaa commit 2d5b893
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
*/
package br.com.caelum.vraptor.validator;

import java.io.Serializable;
import java.util.Collection;
import java.util.List;
import java.util.Map;
Expand All @@ -34,7 +35,9 @@
* @author Otávio Scherer Garcia
*/
@Vetoed
public class MessageList extends ForwardingList<Message> {
public class MessageList extends ForwardingList<Message> implements Serializable {
private static final long serialVersionUID = 1L;


private final List<Message> delegate;
private Map<String, Collection<Message>> grouped;
Expand Down

0 comments on commit 2d5b893

Please sign in to comment.