Fix backwards compatibility issue for reports

This commit is contained in:
Richard Cordovano 2019-10-04 12:42:58 -04:00
parent fdfe94ddcf
commit 017bf4fe1d

View File

@ -101,9 +101,9 @@ public class ReportGenerator {
* @param panel The report generation panel. * @param panel The report generation panel.
*/ */
public ReportGenerator(String configName, ReportGenerationPanel panel) { public ReportGenerator(String configName, ReportGenerationPanel panel) {
this.configName = configName;
this.reportGenerationPanel = panel; this.reportGenerationPanel = panel;
this.progressIndicator = panel.getProgressPanel(); this.progressIndicator = panel.getProgressPanel();
this.configName = configName;
} }
/** /**
@ -115,9 +115,9 @@ public class ReportGenerator {
* @param progressIndicator The report progress indicator. * @param progressIndicator The report progress indicator.
*/ */
public ReportGenerator(String configName, ReportProgressIndicator progressIndicator) { public ReportGenerator(String configName, ReportProgressIndicator progressIndicator) {
this.configName = configName;
this.reportGenerationPanel = null; this.reportGenerationPanel = null;
this.progressIndicator = progressIndicator; this.progressIndicator = progressIndicator;
this.configName = configName;
} }
/** /**