summaryrefslogtreecommitdiff
path: root/songdbj/Entry.java
diff options
context:
space:
mode:
Diffstat (limited to 'songdbj/Entry.java')
-rw-r--r--songdbj/Entry.java14
1 files changed, 0 insertions, 14 deletions
diff --git a/songdbj/Entry.java b/songdbj/Entry.java
deleted file mode 100644
index 19ead66..0000000
--- a/songdbj/Entry.java
+++ /dev/null
@@ -1,14 +0,0 @@
-import java.io.*;
-
-public abstract class Entry {
- protected int offset;
-
- public Entry() {
- offset=-1;
- }
-
- public void setOffset(int pos) { offset=pos; }
- public int getOffset() { return offset; }
-
- public abstract void write(DataOutputStream w) throws IOException;
-} \ No newline at end of file