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 0fffb6c commit 1aae1c8
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,13 @@
*/
package com.flowingcode.vaadin.addons.chipfield;

import java.io.Serializable;
import java.util.List;
import java.util.stream.Collectors;
import java.util.stream.Stream;

public class Planet {
@SuppressWarnings("serial")
public class Planet implements Serializable {
private String name;
private List<String> features;

Expand Down

0 comments on commit 1aae1c8

Please sign in to comment.