Fixed supertypes inclusion rule from NON_NULL to NON_EMPTY

This commit is contained in:
Luca Frosini 2023-04-28 15:18:52 +02:00
parent 12280dc9fd
commit 21407336bb
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ public interface Element extends Serializable {
@JsonIgnore
public String getTypeName();
@JsonInclude(Include.NON_NULL)
@JsonInclude(Include.NON_EMPTY)
@JsonGetter(value = SUPERTYPES_PROPERTY)
public List<String> getSupertypes();