From 2f098d2202e6c2e6a70abfaa67897e9db10d6eef Mon Sep 17 00:00:00 2001 From: "Samuel H. Kenyon" Date: Wed, 9 Apr 2014 14:11:35 -0400 Subject: [PATCH] made a string final --- .../sleuthkit/autopsy/scalpel/ScalpelCarverIngestModule.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ScalpelCarver/src/org/sleuthkit/autopsy/scalpel/ScalpelCarverIngestModule.java b/ScalpelCarver/src/org/sleuthkit/autopsy/scalpel/ScalpelCarverIngestModule.java index 5a0bc208a6..875dcaa772 100644 --- a/ScalpelCarver/src/org/sleuthkit/autopsy/scalpel/ScalpelCarverIngestModule.java +++ b/ScalpelCarver/src/org/sleuthkit/autopsy/scalpel/ScalpelCarverIngestModule.java @@ -53,7 +53,7 @@ class ScalpelCarverIngestModule extends IngestModuleAdapter implements FileInges private static final Logger logger = Logger.getLogger(ScalpelCarverIngestModule.class.getName()); private final String MODULE_OUTPUT_DIR_NAME = "ScalpelCarver"; private String moduleOutputDirPath; - private String configFileName = "scalpel.conf"; + private final String configFileName = "scalpel.conf"; private String configFilePath; private boolean initialized = false; private ScalpelCarver carver;