File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
src/test/java/com/flowingcode/vaadin/addons/gridhelpers Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 21
21
package com .flowingcode .vaadin .addons .gridhelpers ;
22
22
23
23
import com .github .javafaker .Faker ;
24
+ import java .io .Serializable ;
24
25
import java .util .List ;
25
26
import java .util .stream .Collectors ;
26
27
import java .util .stream .Stream ;
27
28
import lombok .Getter ;
28
29
import lombok .Setter ;
29
30
import org .apache .commons .lang3 .StringUtils ;
30
31
31
- class LazyTestData {
32
+ @ SuppressWarnings ("serial" )
33
+ class LazyTestData implements Serializable {
32
34
33
35
private static final Faker faker = new Faker ();
34
36
Original file line number Diff line number Diff line change 20
20
21
21
package com .flowingcode .vaadin .addons .gridhelpers ;
22
22
23
+ import java .io .Serializable ;
23
24
import lombok .AccessLevel ;
24
25
import lombok .AllArgsConstructor ;
25
26
import lombok .Builder ;
29
30
import lombok .experimental .FieldDefaults ;
30
31
import lombok .experimental .NonFinal ;
31
32
33
+ @ SuppressWarnings ("serial" )
32
34
@ Getter
33
35
@ AllArgsConstructor
34
36
@ FieldDefaults (level = AccessLevel .PRIVATE , makeFinal = true )
35
37
@ EqualsAndHashCode
36
38
@ Builder
37
- public class Person {
39
+ public class Person implements Serializable {
38
40
@ Setter
39
41
@ NonFinal
40
42
boolean active ;
You can’t perform that action at this time.
0 commit comments