From 4cdb446f4171c59d0ba2a3d7c98e56c5bc8c758b Mon Sep 17 00:00:00 2001 From: Robert Greene Date: Mon, 1 Sep 2003 03:23:51 +0000 Subject: [PATCH] Incorporated fix from John Matthews for date format in getFileColumnData. --- .../webcodepro/applecommander/storage/PascalFileEntry.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/com/webcodepro/applecommander/storage/PascalFileEntry.java b/src/com/webcodepro/applecommander/storage/PascalFileEntry.java index 2ae3b51..efea1d7 100644 --- a/src/com/webcodepro/applecommander/storage/PascalFileEntry.java +++ b/src/com/webcodepro/applecommander/storage/PascalFileEntry.java @@ -19,7 +19,7 @@ */ package com.webcodepro.applecommander.storage; -import com.webcodepro.applecommander.util.*; +import com.webcodepro.applecommander.util.AppleUtil; import java.text.NumberFormat; import java.text.SimpleDateFormat; @@ -31,7 +31,7 @@ import java.util.List; * Represents a Pascal file entry on disk. *

* Date created: Oct 5, 2002 12:22:34 AM - * @author: Rob Greene + * @author Rob Greene */ public class PascalFileEntry implements FileEntry { private byte[] fileEntry; @@ -181,7 +181,7 @@ public class PascalFileEntry implements FileEntry { */ public List getFileColumnData(int displayMode) { NumberFormat numberFormat = NumberFormat.getNumberInstance(); - SimpleDateFormat dateFormat = new SimpleDateFormat("MM/dd/yy"); + SimpleDateFormat dateFormat = new SimpleDateFormat("dd-MMM-yy"); List list = new ArrayList(); switch (displayMode) {