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 9b8953b commit d3128d2
Show file tree
Hide file tree
Showing 2 changed files with 6 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.twincolgrid;

import java.io.Serializable;
import java.util.Objects;

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

private final String isbn;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,11 @@
*/
package com.flowingcode.vaadin.addons.twincolgrid;

import java.io.Serializable;
import java.util.List;

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

private final String name;

Expand Down

0 comments on commit d3128d2

Please sign in to comment.