From 253ce2893d3453dc27688f8f18c6e3c78add10fb Mon Sep 17 00:00:00 2001 From: Joe Ho Date: Wed, 8 May 2019 15:40:54 -0400 Subject: [PATCH] fix typo --- .../org/sleuthkit/autopsy/casemodule/LogicalImagerPanel.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/casemodule/LogicalImagerPanel.java b/Core/src/org/sleuthkit/autopsy/casemodule/LogicalImagerPanel.java index 57c3e24163..a9c171f54b 100644 --- a/Core/src/org/sleuthkit/autopsy/casemodule/LogicalImagerPanel.java +++ b/Core/src/org/sleuthkit/autopsy/casemodule/LogicalImagerPanel.java @@ -64,12 +64,12 @@ public class LogicalImagerPanel extends JPanel implements DocumentListener { if (f.isDirectory()) { return true; } - return FilenameUtils.isExtension(f.getName(), ".vhd"); + return FilenameUtils.isExtension(f.getName(), "vhd"); } @Override public String getDescription() { - return "sample_image.vhd"; //NON-NLS + return "sparse_image.vhd"; //NON-NLS } };