Skip to content
Snippets Groups Projects
Commit cc0fd7a3 authored by Daniel Gerhardt's avatar Daniel Gerhardt
Browse files

Make 'PaginationController' class abstract

parent 29fb6677
1 merge request!3Pagination
...@@ -20,7 +20,7 @@ package de.thm.arsnova.controller; ...@@ -20,7 +20,7 @@ package de.thm.arsnova.controller;
/** /**
* Adds pagination properties to controllers. * Adds pagination properties to controllers.
*/ */
public class PaginationController extends AbstractController { public abstract class PaginationController extends AbstractController {
protected int offset = -1; protected int offset = -1;
protected int limit = -1; protected int limit = -1;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment