From efbf423f9ab0bdf4fb086563a09f0c4d1ab79598 Mon Sep 17 00:00:00 2001 From: "eugene.livis" Date: Mon, 22 Aug 2022 16:19:28 -0400 Subject: [PATCH] Minor --- .../autopsy/commandlineingest/CommandLineIngestManager.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/commandlineingest/CommandLineIngestManager.java b/Core/src/org/sleuthkit/autopsy/commandlineingest/CommandLineIngestManager.java index 610833fde2..c9bcd6ee68 100755 --- a/Core/src/org/sleuthkit/autopsy/commandlineingest/CommandLineIngestManager.java +++ b/Core/src/org/sleuthkit/autopsy/commandlineingest/CommandLineIngestManager.java @@ -75,9 +75,9 @@ public class CommandLineIngestManager extends CommandLineManager { private Case caseForJob = null; private AutoIngestDataSource dataSource = null; - static int CL_SUCCESS = 0; - static int CL_RUN_FAILURE = -1; - static int CL_PROCESS_FAILURE = -2; + private static final int CL_SUCCESS = 0; + private static final int CL_RUN_FAILURE = -1; + private static final int CL_PROCESS_FAILURE = -2; public CommandLineIngestManager() { }