From 017bf4fe1dfc5dce56ff2c981224229b3be1aafc Mon Sep 17 00:00:00 2001 From: Richard Cordovano Date: Fri, 4 Oct 2019 12:42:58 -0400 Subject: [PATCH] Fix backwards compatibility issue for reports --- .../autopsy/report/infrastructure/ReportGenerator.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/report/infrastructure/ReportGenerator.java b/Core/src/org/sleuthkit/autopsy/report/infrastructure/ReportGenerator.java index e614401750..5b1efe0541 100644 --- a/Core/src/org/sleuthkit/autopsy/report/infrastructure/ReportGenerator.java +++ b/Core/src/org/sleuthkit/autopsy/report/infrastructure/ReportGenerator.java @@ -101,9 +101,9 @@ public class ReportGenerator { * @param panel The report generation panel. */ public ReportGenerator(String configName, ReportGenerationPanel panel) { - this.configName = configName; this.reportGenerationPanel = panel; this.progressIndicator = panel.getProgressPanel(); + this.configName = configName; } /** @@ -115,9 +115,9 @@ public class ReportGenerator { * @param progressIndicator The report progress indicator. */ public ReportGenerator(String configName, ReportProgressIndicator progressIndicator) { - this.configName = configName; this.reportGenerationPanel = null; this.progressIndicator = progressIndicator; + this.configName = configName; } /**