Fixed some minor problems

Former-commit-id: d51a0d04fe
restapi
Jens Pelzetter 2020-07-31 18:30:15 +02:00
parent eb1948d817
commit 5867b26997
1 changed files with 1 additions and 15 deletions

View File

@ -27,8 +27,6 @@ import org.libreccm.l10n.LocalizedString;
*/
public class AssociatedCategoryData extends CategoryId {
private String name;
private LocalizedString title;
private LocalizedString description;
@ -39,19 +37,10 @@ public class AssociatedCategoryData extends CategoryId {
public AssociatedCategoryData(final Category category) {
super(category);
name = category.getName();
title = category.getTitle();
description = category.getDescription();
}
public String getName() {
return name;
}
public void setName(final String name) {
this.name = name;
}
public LocalizedString getTitle() {
return title;
}
@ -68,7 +57,4 @@ public class AssociatedCategoryData extends CategoryId {
this.description = description;
}
}