Skip to content
Snippets Groups Projects
Commit 3140efba authored by aboeckle's avatar aboeckle
Browse files

OO-5034: Coaching curriculum comparator fix

parent 169da853
No related branches found
No related tags found
No related merge requests found
......@@ -103,7 +103,11 @@ public class CurriculumElementViewsRowComparator extends FlexiTreeNodeComparator
if (c1.getKey().isWithoutCurriculum() && !c2.getKey().isWithoutCurriculum()) {
c = -1;
} else if (c1.getKey().isWithoutCurriculum() && c2.getKey().isWithoutCurriculum()) {
c = collator.compare(c1.getRepositoryEntryDisplayName(), c2.getRepositoryEntryDisplayName());
if (c1.getRepositoryEntryDisplayName() != null && c2.getRepositoryEntryDisplayName() != null) {
c = collator.compare(c1.getRepositoryEntryDisplayName(), c2.getRepositoryEntryDisplayName());
} else {
c = compareNullObjects(c1, c2);
}
}
}
......
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