Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class UpdateMetadataDTO {
private List<MetadataDTO> delete;

/**
* List of Metadat associated with answer to be added.
* List of metadata associated with answer to be added.
*/
@JsonProperty(value = "add")
private List<MetadataDTO> add;
Expand All @@ -48,7 +48,7 @@ public UpdateMetadataDTO withDelete(List<MetadataDTO> delete) {
}

/**
* Get list of Metadat associated with answer to be added.
* Get list of metadata associated with answer to be added.
*
* @return the add value
*/
Expand All @@ -57,7 +57,7 @@ public List<MetadataDTO> add() {
}

/**
* Set list of Metadat associated with answer to be added.
* Set list of metadata associated with answer to be added.
*
* @param add the add value to set
* @return the UpdateMetadataDTO object itself.
Expand Down