Skip to content
Snippets Groups Projects
Commit 77b07b56 authored by Raman Arora's avatar Raman Arora
Browse files

Fixed typo in method name.

parent 3271b457
Branches
Tags
No related merge requests found
...@@ -776,7 +776,7 @@ public void addAttachments(BlackboardArtifact message, MessageAttachments attach ...@@ -776,7 +776,7 @@ public void addAttachments(BlackboardArtifact message, MessageAttachments attach
long attachedFileObjId = fileAttachment.getObjectId(); long attachedFileObjId = fileAttachment.getObjectId();
if (attachedFileObjId >= 0) { if (attachedFileObjId >= 0) {
AbstractFile attachedFile = message.getSleuthkitCase().getAbstractFileById(attachedFileObjId); AbstractFile attachedFile = message.getSleuthkitCase().getAbstractFileById(attachedFileObjId);
associateAttachmentWithMesssge(message, attachedFile); associateAttachmentWithMessage(message, attachedFile);
} }
} }
} }
...@@ -793,7 +793,7 @@ public void addAttachments(BlackboardArtifact message, MessageAttachments attach ...@@ -793,7 +793,7 @@ public void addAttachments(BlackboardArtifact message, MessageAttachments attach
* @throws TskCoreException If there is an error creating the * @throws TskCoreException If there is an error creating the
* TSK_ASSOCIATED_OBJECT artifact. * 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<>(); Collection<BlackboardAttribute> attributes = new ArrayList<>();
attributes.add(new BlackboardAttribute(BlackboardAttribute.ATTRIBUTE_TYPE.TSK_ASSOCIATED_ARTIFACT, this.getModuleName(), message.getArtifactID())); 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