aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/github/daneren2005/dsub/domain/Bookmark.java9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/github/daneren2005/dsub/domain/Bookmark.java b/src/github/daneren2005/dsub/domain/Bookmark.java
index 4092cec4..c114d329 100644
--- a/src/github/daneren2005/dsub/domain/Bookmark.java
+++ b/src/github/daneren2005/dsub/domain/Bookmark.java
@@ -33,7 +33,6 @@ public class Bookmark implements Serializable {
private String comment;
private Date created;
private Date changed;
- private MusicDirectory.Entry entry;
public int getPosition() {
return position;
@@ -90,12 +89,4 @@ public class Bookmark implements Serializable {
this.changed = null;
}
}
-
- public MusicDirectory.Entry getEntry() {
- return this.entry;
- }
-
- public void setEntry(MusicDirectory.Entry entry) {
- this.entry = entry;
- }
}