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

OO-4455: fix compilation issue

parent 6d502ef3
No related branches found
No related tags found
No related merge requests found
...@@ -140,6 +140,6 @@ public class CourseDisclaimerDAO { ...@@ -140,6 +140,6 @@ public class CourseDisclaimerDAO {
.setParameter("repoEntryKey", repositoryEntryRef.getKey()) .setParameter("repoEntryKey", repositoryEntryRef.getKey())
.getResultList(); .getResultList();
return count.isEmpty() ? 0 : count.get(0); return count.isEmpty() ? Long.valueOf(0l) : count.get(0);
} }
} }
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