Skip to content
Snippets Groups Projects
Commit 180e3d50 authored by uhensler's avatar uhensler
Browse files

OO-3777: Establish backward compatibility of analysis presentations

parent 1f3d88a1
No related branches found
No related tags found
No related merge requests found
...@@ -124,8 +124,8 @@ public abstract class GroupByController extends FormBasicController implements F ...@@ -124,8 +124,8 @@ public abstract class GroupByController extends FormBasicController implements F
private MultiGroupBy multiGroupBy; private MultiGroupBy multiGroupBy;
private final boolean insufficientConfigured; private final boolean insufficientConfigured;
private boolean insufficientOnly = false; private boolean insufficientOnly = false;
private TemporalGroupBy temporalGroupBy = TemporalGroupBy.DATA_COLLECTION_DEADLINE_YEAR; private TemporalGroupBy temporalGroupBy;
private TrendDifference trendDifference = TrendDifference.NONE; private TrendDifference trendDifference;
private String rubricId; private String rubricId;
@Autowired @Autowired
...@@ -144,8 +144,8 @@ public abstract class GroupByController extends FormBasicController implements F ...@@ -144,8 +144,8 @@ public abstract class GroupByController extends FormBasicController implements F
this.sliders = initSliders(evaluationForm); this.sliders = initSliders(evaluationForm);
this.identifiers = sliders.stream().map(SliderWrapper::getIdentifier).collect(toList()); this.identifiers = sliders.stream().map(SliderWrapper::getIdentifier).collect(toList());
this.insufficientConfigured = initInsufficientConfigured(evaluationForm); this.insufficientConfigured = initInsufficientConfigured(evaluationForm);
this.temporalGroupBy = temporalGroupBy; this.temporalGroupBy = temporalGroupBy != null? temporalGroupBy: TemporalGroupBy.DATA_COLLECTION_DEADLINE_YEAR;
this.trendDifference = trendDifference; this.trendDifference = trendDifference != null? trendDifference: TrendDifference.NONE;
this.rubricId = rubricId; this.rubricId = rubricId;
initForm(ureq); initForm(ureq);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment