From 01fd44f8fd489547362a3ac9807dddeda94385e1 Mon Sep 17 00:00:00 2001 From: Date: Tue, 7 Aug 2012 01:52:00 +0000 Subject: [PATCH] Working on add directory for ProDOS... surely this is the first step? --- .../applecommander/storage/os/prodos/ProdosDirectoryEntry.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/webcodepro/applecommander/storage/os/prodos/ProdosDirectoryEntry.java b/src/com/webcodepro/applecommander/storage/os/prodos/ProdosDirectoryEntry.java index 3946e03..fc3206b 100644 --- a/src/com/webcodepro/applecommander/storage/os/prodos/ProdosDirectoryEntry.java +++ b/src/com/webcodepro/applecommander/storage/os/prodos/ProdosDirectoryEntry.java @@ -96,6 +96,6 @@ public class ProdosDirectoryEntry extends ProdosFileEntry implements DirectoryEn * @see com.webcodepro.applecommander.storage.DirectoryEntry#createDirectory() */ public DirectoryEntry createDirectory() throws DiskFullException { - throw new UnsupportedOperationException(textBundle.get("DirectoryCreationNotSupported")); //$NON-NLS-1$ + return getDisk().createDirectory(); } }