Skip to content

Commit

Permalink
Merge pull request #24 from protegeproject/forms-fix-blank-entities
Browse files Browse the repository at this point in the history
Fixed serialization mismatch in EntityNameControlDataDto
  • Loading branch information
matthewhorridge authored Jun 16, 2024
2 parents 595abe5 + 8b24f18 commit 0adb2cd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public abstract class EntityNameControlDataDto implements FormControlDataDto {

@JsonCreator
public static EntityNameControlDataDto get(@JsonProperty("descriptor") @Nonnull EntityNameControlDescriptor descriptor,
@JsonProperty("entityData") @Nonnull OWLEntityData entityData,
@JsonProperty("entity") @Nonnull OWLEntityData entityData,
@JsonProperty("depth") int depth) {
return new AutoValue_EntityNameControlDataDto(depth, descriptor, entityData);
}
Expand Down

0 comments on commit 0adb2cd

Please sign in to comment.