Skip to content
Snippets Groups Projects
Unverified Commit 03ff7087 authored by Richard Cordovano's avatar Richard Cordovano Committed by GitHub
Browse files

Merge pull request #1747 from raman-bt/release-4.8.0

Fixed typo in method name.
parents ef794ce7 77b07b56
No related branches found
No related tags found
No related merge requests found
......@@ -776,7 +776,7 @@ public void addAttachments(BlackboardArtifact message, MessageAttachments attach
long attachedFileObjId = fileAttachment.getObjectId();
if (attachedFileObjId >= 0) {
AbstractFile attachedFile = message.getSleuthkitCase().getAbstractFileById(attachedFileObjId);
associateAttachmentWithMesssge(message, attachedFile);
associateAttachmentWithMessage(message, attachedFile);
}
}
}
......@@ -793,7 +793,7 @@ public void addAttachments(BlackboardArtifact message, MessageAttachments attach
* @throws TskCoreException If there is an error creating the
* TSK_ASSOCIATED_OBJECT artifact.
*/
private BlackboardArtifact associateAttachmentWithMesssge(BlackboardArtifact message, AbstractFile attachedFile) throws TskCoreException {
private BlackboardArtifact associateAttachmentWithMessage(BlackboardArtifact message, AbstractFile attachedFile) throws TskCoreException {
Collection<BlackboardAttribute> attributes = new ArrayList<>();
attributes.add(new BlackboardAttribute(BlackboardAttribute.ATTRIBUTE_TYPE.TSK_ASSOCIATED_ARTIFACT, this.getModuleName(), message.getArtifactID()));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment