code review updates

This commit is contained in:
Karl Mortensen 2015-05-14 16:58:20 -04:00
parent 13acb13ee9
commit 9917381b92
2 changed files with 2 additions and 2 deletions

View File

@ -838,7 +838,7 @@ public class Case implements SleuthkitCase.ErrorObserver {
*
* @return the path to the host output directory
*/
public String getHostDirectory() {
private String getHostDirectory() {
String caseDirectory = getCaseDirectory();
Path hostPath;
if (caseType == CaseType.MULTI_USER_CASE) {

View File

@ -83,7 +83,7 @@ class ScalpelCarverIngestModule implements FileIngestModule {
}
// make sure module output directory exists; create it if it doesn't
moduleOutputDirPath = Case.getCurrentCase().getModulesDirectory()
moduleOutputDirPath = Case.getCurrentCase().getModulesOutputDirAbsPath()
+ File.separator + MODULE_OUTPUT_DIR_NAME;
File moduleOutputDir = new File(moduleOutputDirPath);
if (!moduleOutputDir.exists()) {