diff --git a/Core/src/org/sleuthkit/autopsy/datamodel/ArtifactStringContent.java b/Core/src/org/sleuthkit/autopsy/datamodel/ArtifactStringContent.java index 492f323538..1c591e6659 100644 --- a/Core/src/org/sleuthkit/autopsy/datamodel/ArtifactStringContent.java +++ b/Core/src/org/sleuthkit/autopsy/datamodel/ArtifactStringContent.java @@ -149,7 +149,7 @@ public class ArtifactStringContent implements StringContent { * Attribute source modules column. */ buffer.append(""); //NON-NLS - buffer.append(StringUtils.join(attr.getSourceModules(), ", ")); + buffer.append(StringUtils.join(attr.getSources(), ", ")); buffer.append(""); //NON-NLS buffer.append("\n"); //NON-NLS diff --git a/Core/src/org/sleuthkit/autopsy/report/testfixtures/CustomArtifactsCreatorIngestModule.java b/Core/src/org/sleuthkit/autopsy/report/testfixtures/CustomArtifactsCreatorIngestModule.java index b66ab57533..289623f0ef 100644 --- a/Core/src/org/sleuthkit/autopsy/report/testfixtures/CustomArtifactsCreatorIngestModule.java +++ b/Core/src/org/sleuthkit/autopsy/report/testfixtures/CustomArtifactsCreatorIngestModule.java @@ -111,8 +111,8 @@ final class CustomArtifactsCreatorIngestModule extends FileIngestModuleAdapter { * The second attempt should have no effect on the data. */ for (BlackboardAttribute attr : attributes) { - attr.addSourceModule("Added Module"); - attr.addSourceModule("Added Module"); + attr.addSource("Added Module"); + attr.addSource("Added Module"); } } catch (TskCoreException ex) {