diff options
author | Scott Jackson <daneren2005@gmail.com> | 2014-08-15 15:04:10 -0700 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2014-08-15 15:04:10 -0700 |
commit | cbd0c4b83ef5c5a32d859525841042c702e279b8 (patch) | |
tree | a975b1dba09e2007fb353fc26da32bfe77dd51e5 /src/github | |
parent | 6ebe14d439ec060e6dadd0dffdb8f16a13d57c9a (diff) | |
download | dsub-cbd0c4b83ef5c5a32d859525841042c702e279b8.tar.gz dsub-cbd0c4b83ef5c5a32d859525841042c702e279b8.tar.bz2 dsub-cbd0c4b83ef5c5a32d859525841042c702e279b8.zip |
Remove entry from being stored under bookmark
Diffstat (limited to 'src/github')
-rw-r--r-- | src/github/daneren2005/dsub/domain/Bookmark.java | 9 |
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;
- }
}
|