Удалил метод empty в SortContainer
Он не нужен, проще отправлять null. Изменил метод проверки в CriteriaJooqFilter
This commit is contained in:
parent
0926725983
commit
8de98da22f
@ -111,8 +111,7 @@ public class CriteriaJooqFilter {
|
||||
}
|
||||
|
||||
public CriteriaJooqFilter sort(SortContainer container) {
|
||||
Assert.isNotNull(container);
|
||||
if (container.getFieldName() != null) {
|
||||
if (container != null && container.getFieldName() != null) {
|
||||
this.sorts.add(container);
|
||||
}
|
||||
return this;
|
||||
|
@ -17,10 +17,6 @@ public class SortContainer {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public static SortContainer empty() {
|
||||
return new SortContainer(null);
|
||||
}
|
||||
|
||||
public static SortContainer of(String fieldName) {
|
||||
Assert.isNotNull(fieldName);
|
||||
return new SortContainer(fieldName);
|
||||
|
Loading…
Reference in New Issue
Block a user