refactored from org.vamsas to uk.ac.vamsas
[vamsas.git] / src / org / vamsas / client / simpleclient / ListFile.java
diff --git a/src/org/vamsas/client/simpleclient/ListFile.java b/src/org/vamsas/client/simpleclient/ListFile.java
deleted file mode 100644 (file)
index 30956e9..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-/**
- * 
- */
-package org.vamsas.client.simpleclient;
-
-import java.io.File;
-
-
-/**
- * base class for generic list storage and retrieval operations from a locked IO file
- *  TODO: LATER: generalize for all list storage and retrieval operations 
- *  (pull-up from ClientsFile object)
- */
-public class ListFile extends SessionFile {
-
-  /**
-   * @param file
-   */
-  public ListFile(File file) throws java.io.IOException {
-    super(file);
-    if (!this.sessionFile.exists())
-      this.sessionFile.createNewFile();
-  }
-
-}