Skip to content
Snippets Groups Projects
Commit c84b9363 authored by srosse's avatar srosse
Browse files

OO-2329: null responses can happen

parent 450e6b1e
No related branches found
No related tags found
No related merge requests found
...@@ -239,18 +239,19 @@ public class CompareEvaluationsFormController extends FormBasicController { ...@@ -239,18 +239,19 @@ public class CompareEvaluationsFormController extends FormBasicController {
} }
String responseIdentifier = slider.getId(); String responseIdentifier = slider.getId();
List<EvaluationFormResponse> responses = identifierToResponses.get(responseIdentifier); List<EvaluationFormResponse> responses = identifierToResponses.get(responseIdentifier);
if(responses != null && responses.size() > 0) {
for(EvaluationFormResponse response:responses) { for(EvaluationFormResponse response:responses) {
EvaluationFormSession responseSession = response.getSession(); EvaluationFormSession responseSession = response.getSession();
if(!series.containsKey(responseSession)) { if(!series.containsKey(responseSession)) {
Identity identity = responseSession.getIdentity(); Identity identity = responseSession.getIdentity();
String legend = getLegend(identity); String legend = getLegend(identity);
String color = evaluatorToColors.get(identity); String color = evaluatorToColors.get(identity);
series.put(responseSession, new RadarSeries(legend, color)); series.put(responseSession, new RadarSeries(legend, color));
} }
if(response.getNumericalResponse() != null ) { if(response.getNumericalResponse() != null ) {
double value = response.getNumericalResponse().doubleValue(); double value = response.getNumericalResponse().doubleValue();
series.get(responseSession).addPoint(axis, value); series.get(responseSession).addPoint(axis, value);
}
} }
} }
} }
......
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