Skip to content
Snippets Groups Projects
Commit 3a0c76cf authored by Piotr Gawron's avatar Piotr Gawron
Browse files

merge issues

parent 1e59a93d
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -253,7 +253,7 @@ public class PermanentDatabaseLevelCache extends XmlParser
entry.setValue(value);
entry.setType(type);
Calendar expires = Calendar.getInstance();
expires.add(Calendar.DAY_OF_MONTH, validDays());
expires.add(Calendar.DAY_OF_MONTH, validDays);
entry.setExpires(expires);
getCacheQueryDao().add(entry);
......
......@@ -171,7 +171,8 @@ public class LayoutService implements ILayoutService {
}
@Override
public List<LayoutView> getCustomLayouts(Model model, User user) {
public List<LayoutView> getCustomLayouts(Model model, User user, Boolean publicOverlay, User creator) {
// TODO remove publicOverlay and creator params
List<LayoutView> result = new ArrayList<>();
if (model == null || user == null) {
return result;
......
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