Skip to content

Commit

Permalink
fix(demo): make demo classes serializable
Browse files Browse the repository at this point in the history
  • Loading branch information
javier-godoy committed Apr 3, 2024
1 parent a68d432 commit f971010
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
*/
package com.flowingcode.vaadin.addons.badgelist;

import java.io.Serializable;
import java.util.List;
import lombok.AllArgsConstructor;
import lombok.Builder;
Expand All @@ -31,7 +32,8 @@
@AllArgsConstructor
@EqualsAndHashCode
@Builder
public class Person {
@SuppressWarnings("serial")
public class Person implements Serializable {
boolean active;
String firstName;
String lastName;
Expand Down

0 comments on commit f971010

Please sign in to comment.