mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
Some changes that are possible in Java language level 7 and 8. (#1007)
This commit is contained in:
committed by
Rob Bygrave
parent
bdd7884f42
commit
8432f7b0d5
@@ -265,7 +265,7 @@ public class CQueryEngine {
|
||||
List<Version<T>> versions = cquery.readVersions();
|
||||
// just order in memory rather than use NULLS LAST as that
|
||||
// is not universally supported, not expect huge list here
|
||||
Collections.sort(versions, OrderVersionDesc.INSTANCE);
|
||||
versions.sort(OrderVersionDesc.INSTANCE);
|
||||
deriveVersionDiffs(versions, request);
|
||||
|
||||
if (request.isLogSummary()) {
|
||||
|
||||
Reference in New Issue
Block a user