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 authored and mlopezFC committed Apr 3, 2024
1 parent 24c8d30 commit c285e90
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,11 @@
*/
package com.flowingcode.vaadin.addons.gridexporter;

import java.io.Serializable;
import java.time.LocalDate;

public class Person {
@SuppressWarnings("serial")
public class Person implements Serializable {

private String name;
private String lastName;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@
*/
package com.flowingcode.vaadin.addons.gridexporter;

public class PersonTreeEntry {
import java.io.Serializable;

@SuppressWarnings("serial")
public class PersonTreeEntry implements Serializable {

private Integer age;
private Person person;
Expand Down

0 comments on commit c285e90

Please sign in to comment.