From b838e5a3cf96a7c45443e712af9ca40f227e488c Mon Sep 17 00:00:00 2001 From: William Schaefer Date: Wed, 29 Sep 2021 12:27:23 -0400 Subject: [PATCH] 8059 add apostraphe for possesive form of result instead of plural --- .../centralrepository/datamodel/CorrelationAttributeUtil.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/centralrepository/datamodel/CorrelationAttributeUtil.java b/Core/src/org/sleuthkit/autopsy/centralrepository/datamodel/CorrelationAttributeUtil.java index 46de58fcb2..c728b463b9 100755 --- a/Core/src/org/sleuthkit/autopsy/centralrepository/datamodel/CorrelationAttributeUtil.java +++ b/Core/src/org/sleuthkit/autopsy/centralrepository/datamodel/CorrelationAttributeUtil.java @@ -141,7 +141,7 @@ public class CorrelationAttributeUtil { int artifactTypeID = analysisResult.getArtifactTypeID(); if (artifactTypeID == ARTIFACT_TYPE.TSK_INTERESTING_ARTIFACT_HIT.getTypeID()) { //because this attribute retrieval is only occuring when the analysis result is an interesting artifact hit - //and only one attribute is being retrieved the analysis results own get attribute method can be used efficently + //and only one attribute is being retrieved the analysis result's own get attribute method can be used efficently BlackboardAttribute assocArtifactAttr = analysisResult.getAttribute(BlackboardAttribute.Type.TSK_ASSOCIATED_ARTIFACT); if (assocArtifactAttr != null) { BlackboardArtifact sourceArtifact = Case.getCurrentCaseThrows().getSleuthkitCase().getBlackboardArtifact(assocArtifactAttr.getValueLong()); @@ -160,7 +160,7 @@ public class CorrelationAttributeUtil { } else { if (artifactTypeID == ARTIFACT_TYPE.TSK_KEYWORD_HIT.getTypeID()) { //because this attribute retrieval is only occuring when the analysis result is an keyword hit - //and only one attribute is being retrieved the analysis results own get attribute method can be used efficently + //and only one attribute is being retrieved the analysis result's own get attribute method can be used efficently BlackboardAttribute setNameAttr = analysisResult.getAttribute(BlackboardAttribute.Type.TSK_SET_NAME); if (setNameAttr != null && CorrelationAttributeUtil.getEmailAddressAttrDisplayName().equals(setNameAttr.getValueString())) { correlationAttrs.addAll(makeCorrAttrFromArtifactAttr(analysisResult, BlackboardAttribute.ATTRIBUTE_TYPE.TSK_KEYWORD, CorrelationAttributeInstance.EMAIL_TYPE_ID, analysisResult.getAttributes()));