Skip to content
Snippets Groups Projects
Commit b17651a9 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

project description field doesn't exist (it referred to model descritpion)

parent 554262b6
No related branches found
No related tags found
2 merge requests!115Resolve "admin panel should use API",!114Resolve "admin panel should use API"
......@@ -42,11 +42,6 @@ public class ProjectMetaData implements Serializable {
*/
private String projectId;
/**
* Description of the model.
*/
private String description;
/**
* List of overview images attached to this model.
*/
......@@ -80,23 +75,6 @@ public class ProjectMetaData implements Serializable {
this.version = version;
}
/**
* @return the description
* @see #description
*/
public String getDescription() {
return description;
}
/**
* @param description
* the description to set
* @see #description
*/
public void setDescription(String description) {
this.description = description;
}
/**
* @return the name
* @see #name
......
......@@ -115,7 +115,6 @@ public class ProjectRestImpl extends BaseRestImpl {
if (model != null) {
result.setOverviewImageViews(factory.createList(model.getOverviewImages()));
result.setDescription(model.getNotes());
Set<OverviewImage> set = new HashSet<>();
set.addAll(model.getOverviewImages());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment