tog cort commentlist

git-svn-id: svn://svn.dsv.su.se/scipro/scipro/trunk@274 73ecded7-942e-4092-bab0-0e58ef0ee984
This commit is contained in:
joha-asc 2011-03-02 10:53:59 +00:00
parent 445675738e
commit 12a750e19b

@ -30,8 +30,6 @@ public class Resource extends Ratable {
@JoinTable(name="resource_tag")
private List<Tag> tagList = new ArrayList<Tag>();
@OneToMany
private List<Comment> commentList = new ArrayList<Comment>();
public String getInfo() {
return info;
@ -48,12 +46,4 @@ public class Resource extends Ratable {
public void setTagList(List<Tag> tagList) {
this.tagList = tagList;
}
public List<Comment> getCommentList() {
return commentList;
}
public void setCommentList(List<Comment> commentList) {
this.commentList = commentList;
}
}