From 81f5fb18499bd525bef5fc9056b88932671663a6 Mon Sep 17 00:00:00 2001 From: Brian Carrier Date: Mon, 25 Sep 2017 13:17:07 -0400 Subject: [PATCH] Added comment about usage of toString elsewhere. --- .../centralrepository/datamodel/CorrelationAttribute.java | 2 ++ 1 file changed, 2 insertions(+) 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();