DATACMNS-867 - Second draft.

This commit is contained in:
Oliver Gierke
2016-06-21 16:52:28 +02:00
parent 57ed50a730
commit d4811e29d9
222 changed files with 2297 additions and 2138 deletions

View File

@@ -209,7 +209,7 @@ public class ChainedTransactionManager implements PlatformTransactionManager {
private <T> Iterable<T> reverse(Collection<T> collection) {
List<T> list = new ArrayList<T>(collection);
List<T> list = new ArrayList<>(collection);
Collections.reverse(list);
return list;
}