diff --git a/src/com/webcodepro/applecommander/storage/ProdosFileEntry.java b/src/com/webcodepro/applecommander/storage/ProdosFileEntry.java index 7754985..6d95c9e 100644 --- a/src/com/webcodepro/applecommander/storage/ProdosFileEntry.java +++ b/src/com/webcodepro/applecommander/storage/ProdosFileEntry.java @@ -32,9 +32,6 @@ import java.util.List; * @author: Rob Greene */ public class ProdosFileEntry extends ProdosCommonEntry implements FileEntry { - private List files; - private ProdosSubdirectoryHeader subdirectoryHeader; - /** * Constructor for ProdosFileEntry. */ @@ -285,24 +282,6 @@ public class ProdosFileEntry extends ProdosCommonEntry implements FileEntry { return getStorageType() == 0x0d; } - /** - * Retrieve the list of files in this directory. - * Note that if this is not a directory, the return - * value should be null. If this a directory, the - * return value should always be a list - a directory - * with 0 entries returns an empty list. - */ - public List getFiles() { - return files; - } - - /** - * Set the list of files. - */ - public void setFiles(List files) { - this.files = files; - } - /** * Identify if this file has been deleted. */ @@ -318,20 +297,6 @@ public class ProdosFileEntry extends ProdosCommonEntry implements FileEntry { setStorageType(0); } - /** - * Set the subdirectory header. - */ - public void setSubdirectoryHeader(ProdosSubdirectoryHeader subdirectoryHeader) { - this.subdirectoryHeader = subdirectoryHeader; - } - - /** - * Get the subdirectory header. - */ - public ProdosSubdirectoryHeader getSubdirectoryHeader() { - return this.subdirectoryHeader; - } - /** * Get the standard file column header information. * This default implementation is intended only for standard mode.