File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
algoliasearch-core/src/main/java/com/algolia/model Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -18,10 +18,10 @@ public class SourceIndexWithReplicas {
18
18
private String indexName ;
19
19
20
20
@ JsonProperty ("analyticsTags" )
21
- private List <String > analyticsTags = new ArrayList <>() ;
21
+ private List <String > analyticsTags = null ;
22
22
23
23
@ JsonProperty ("facets" )
24
- private List <Object > facets = new ArrayList <>() ;
24
+ private List <Object > facets = null ;
25
25
26
26
@ JsonProperty ("minHits" )
27
27
private Integer minHits ;
@@ -30,7 +30,7 @@ public class SourceIndexWithReplicas {
30
30
private Integer minLetters ;
31
31
32
32
@ JsonProperty ("generate" )
33
- private List <List <String >> generate = new ArrayList <>() ;
33
+ private List <List <String >> generate = null ;
34
34
35
35
@ JsonProperty ("external" )
36
36
private List <SourceIndexExternal > external = new ArrayList <>();
Original file line number Diff line number Diff line change 12
12
public class ApiKey {
13
13
14
14
@ JsonProperty ("acl" )
15
- private List <Acl > acl = new ArrayList <>() ;
15
+ private List <Acl > acl = null ;
16
16
17
17
@ JsonProperty ("description" )
18
18
private String description ;
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ public class GetApiKeyResponse {
18
18
private Long createdAt ;
19
19
20
20
@ JsonProperty ("acl" )
21
- private List <Acl > acl = new ArrayList <>() ;
21
+ private List <Acl > acl = null ;
22
22
23
23
@ JsonProperty ("description" )
24
24
private String description ;
You can’t perform that action at this time.
0 commit comments