Fixed some minor problems
parent
38d76fbcda
commit
d51a0d04fe
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue