From ede32f6fe1ce533cb68b33d0a0ac8e61d74d6443 Mon Sep 17 00:00:00 2001 From: "U-BASIS\\dsmyda" Date: Mon, 20 Aug 2018 14:26:48 -0400 Subject: [PATCH] Type fix in factory comment' --- .../autopsy/tabulardatareader/FileReaderFactory.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/tabulardatareader/FileReaderFactory.java b/Core/src/org/sleuthkit/autopsy/tabulardatareader/FileReaderFactory.java index 5ce902a234..5295bb924e 100755 --- a/Core/src/org/sleuthkit/autopsy/tabulardatareader/FileReaderFactory.java +++ b/Core/src/org/sleuthkit/autopsy/tabulardatareader/FileReaderFactory.java @@ -32,7 +32,7 @@ public final class FileReaderFactory { * is not supported. * * @param mimeType mimeType passed in from the ingest module - * @param file current file under inspection +g * @param file current file under inspection * @param localDiskPath path for abstract file contents to be written * @return The correct reader class needed to read the file contents * @throws org.sleuthkit.autopsy.tabulardatareader.AbstractReader.FileReaderInitException @@ -47,7 +47,7 @@ public final class FileReaderFactory { try { return new ExcelReader(file, localDiskPath, mimeType); //Catches runtime exceptions being emitted from Apache - //POI (such as EncryptedDocumentException) as wraps them + //POI (such as EncryptedDocumentException) and wraps them //into FileReaderInitException to be caught and logged //in the ingest module. } catch(Exception poiInitException) {