DATACMNS-867 - Fixed type on Sort.isUnsorted().

This commit is contained in:
Oliver Gierke
2017-03-22 23:04:34 +01:00
parent 58b2bde303
commit d65d5a45e5

View File

@@ -197,7 +197,7 @@ public class Sort implements Iterable<org.springframework.data.domain.Sort.Order
return !orders.isEmpty(); return !orders.isEmpty();
} }
public boolean isUnorted() { public boolean isUnsorted() {
return !isSorted(); return !isSorted();
} }