diff --git a/Core/src/org/sleuthkit/autopsy/casemodule/AddImageTask.java b/Core/src/org/sleuthkit/autopsy/casemodule/AddImageTask.java index a00117178e..8ce6634303 100644 --- a/Core/src/org/sleuthkit/autopsy/casemodule/AddImageTask.java +++ b/Core/src/org/sleuthkit/autopsy/casemodule/AddImageTask.java @@ -170,7 +170,7 @@ class AddImageTask implements Runnable { try { imageId = addImageProcess.commit(); } catch (TskCoreException e) { - logger.log(Level.WARNING, "Errors occured while committing the image", e); //NON-NLS + logger.log(Level.WARNING, "Errors occurred while committing the image", e); //NON-NLS errorList.add(e.getMessage()); } finally { if (imageId != 0) { @@ -208,7 +208,7 @@ class AddImageTask implements Runnable { } if (!errorList.isEmpty()) { - logger.log(Level.INFO, "There were errors that occured in add image process"); //NON-NLS + logger.log(Level.INFO, "There were errors that occurred in add image process"); //NON-NLS } // When everything happens without an error: diff --git a/Core/src/org/sleuthkit/autopsy/casemodule/AddLocalFilesTask.java b/Core/src/org/sleuthkit/autopsy/casemodule/AddLocalFilesTask.java index b355400a6f..476a241936 100644 --- a/Core/src/org/sleuthkit/autopsy/casemodule/AddLocalFilesTask.java +++ b/Core/src/org/sleuthkit/autopsy/casemodule/AddLocalFilesTask.java @@ -107,11 +107,11 @@ class AddLocalFilesTask implements Runnable { private void postProcess() { if (cancelRequested() || hasCritError) { - logger.log(Level.WARNING, "Handling errors or interruption that occured in logical files process"); //NON-NLS + logger.log(Level.WARNING, "Handling errors or interruption that occurred in logical files process"); //NON-NLS } if (!errorList.isEmpty()) { //data error (non-critical) - logger.log(Level.WARNING, "Handling non-critical errors that occured in logical files process"); //NON-NLS + logger.log(Level.WARNING, "Handling non-critical errors that occurred in logical files process"); //NON-NLS } if (!(cancelRequested() || hasCritError)) { diff --git a/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/SolrSearchService.java b/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/SolrSearchService.java index ed22f37557..7c28a15aff 100644 --- a/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/SolrSearchService.java +++ b/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/SolrSearchService.java @@ -46,7 +46,7 @@ import org.sleuthkit.autopsy.keywordsearchservice.KeywordSearchServiceException; @ServiceProvider(service = KeywordSearchService.class) public class SolrSearchService implements KeywordSearchService { - private static final String BAD_IP_ADDRESS_FORMAT = "ioexception occured when talking to server"; + private static final String BAD_IP_ADDRESS_FORMAT = "ioexception occurred when talking to server"; private static final String SERVER_REFUSED_CONNECTION = "server refused connection"; private static final int IS_REACHABLE_TIMEOUT_MS = 1000;