added comment about default values, changed scope of methods

This commit is contained in:
Brian Carrier 2014-03-18 20:40:52 -04:00
parent c6cd57bfd8
commit 6ceb859f30

View File

@ -52,6 +52,8 @@ import org.sleuthkit.datamodel.TskException;
private static long matchTime = 0; private static long matchTime = 0;
private static int messageId = 0; private static int messageId = 0;
private static long numFiles = 0; private static long numFiles = 0;
// NOTE: This value needs to be in sync with the default GUI value
// given the current design of only updating this when the user changes the default.
private static boolean skipKnown = true; private static boolean skipKnown = true;
private static long MIN_FILE_SIZE = 512; private static long MIN_FILE_SIZE = 512;
@ -190,7 +192,7 @@ import org.sleuthkit.datamodel.TskException;
return false; return false;
} }
public static void setSkipKnown(boolean flag) { protected static void setSkipKnown(boolean flag) {
skipKnown = flag; skipKnown = flag;
} }