diff --git a/Core/src/org/sleuthkit/autopsy/centralrepository/datamodel/CorrelationAttribute.java b/Core/src/org/sleuthkit/autopsy/centralrepository/datamodel/CorrelationAttribute.java index 59bb6a200a..838aacfcbc 100755 --- a/Core/src/org/sleuthkit/autopsy/centralrepository/datamodel/CorrelationAttribute.java +++ b/Core/src/org/sleuthkit/autopsy/centralrepository/datamodel/CorrelationAttribute.java @@ -83,6 +83,8 @@ public class CorrelationAttribute implements Serializable { @Override public String toString() { + // NOTE: This string is currently being used in IngestEventsListener to detect if we have already seen + // the value and type pair. Be careful if this method is changed. String result = this.getID() + this.getCorrelationType().toString() + this.getCorrelationValue();