From 0f2664453451f30700e39fcacae7f2ce8fa7e90d Mon Sep 17 00:00:00 2001 From: Andrew Ziehl Date: Mon, 13 Aug 2018 13:02:42 -0700 Subject: [PATCH] Add wip constructor --- .../datamodel/CorrelationAttributeInstance.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Core/src/org/sleuthkit/autopsy/centralrepository/datamodel/CorrelationAttributeInstance.java b/Core/src/org/sleuthkit/autopsy/centralrepository/datamodel/CorrelationAttributeInstance.java index bf7b829c33..4a4f30bfca 100644 --- a/Core/src/org/sleuthkit/autopsy/centralrepository/datamodel/CorrelationAttributeInstance.java +++ b/Core/src/org/sleuthkit/autopsy/centralrepository/datamodel/CorrelationAttributeInstance.java @@ -114,6 +114,10 @@ public class CorrelationAttributeInstance implements Serializable { throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. } + public CorrelationAttributeInstance(Type filesType, String md5, CorrelationCase eamCase, CorrelationDataSource eamDataSource, String string, Object object, TskData.FileKnown fileKnown) { + throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. + } + public Boolean equals(CorrelationAttributeInstance otherInstance) { return ((this.getID() == otherInstance.getID()) && (this.getCorrelationCase().equals(otherInstance.getCorrelationCase()))