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

OO-2281: score can be null

parent 2e21e977
No related branches found
No related tags found
No related merge requests found
......@@ -78,7 +78,9 @@ public class ReminderRuleDAO {
Long identityKey = (Long)infos[0];
if(identityKeySet == null || identityKeySet.contains(identityKey)) {
Number score = (Number)infos[1];
dateMap.put(identityKey, score.floatValue());
if(score != null) {
dateMap.put(identityKey, score.floatValue());
}
}
}
return dateMap;
......
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