Fix using java 8 method in LimitQueryBuilder

This commit is contained in:
Christoph Büscher 2015-06-09 15:57:33 +02:00
parent 3672aceee3
commit 71f84b3a0e
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ public class LimitQueryBuilder extends QueryBuilder<LimitQueryBuilder> {
@Override @Override
public int hashCode() { public int hashCode() {
return Integer.hashCode(limit); return this.limit;
} }
@Override @Override