1
0
mirror of https://github.com/elisspace/autopsy.git synced 2026-09-04 06:50:00 +00:00

Added comment about usage of toString elsewhere.

This commit is contained in:
Brian Carrier
2017-09-25 13:17:07 -04:00
committed by GitHub
parent f157df2e7e
commit 81f5fb1849

View File

@@ -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();