committed by
Jens Schauder
parent
72774135a7
commit
7b2c4e5f23
@@ -16,12 +16,9 @@
|
||||
package org.springframework.data.relational.core.conversion;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Comparator;
|
||||
import java.util.List;
|
||||
import java.util.function.Consumer;
|
||||
|
||||
import org.springframework.data.mapping.PersistentPropertyPath;
|
||||
import org.springframework.data.relational.core.mapping.RelationalPersistentProperty;
|
||||
import org.springframework.util.Assert;
|
||||
|
||||
/**
|
||||
@@ -35,9 +32,6 @@ import org.springframework.util.Assert;
|
||||
*/
|
||||
public class SaveBatchingAggregateChange<T> implements BatchingAggregateChange<T, RootAggregateChange<T>> {
|
||||
|
||||
private static final Comparator<PersistentPropertyPath<RelationalPersistentProperty>> pathLengthComparator = //
|
||||
Comparator.comparing(PersistentPropertyPath::getLength);
|
||||
|
||||
private final Class<T> entityType;
|
||||
private final List<DbAction<?>> rootActions = new ArrayList<>();
|
||||
/**
|
||||
|
||||
@@ -15,10 +15,8 @@
|
||||
*/
|
||||
package org.springframework.data.relational.core.dialect;
|
||||
|
||||
import java.lang.reflect.Array;
|
||||
import java.util.Arrays;
|
||||
import java.util.Collection;
|
||||
import java.util.Collections;
|
||||
|
||||
import org.springframework.data.relational.core.sql.IdentifierProcessing;
|
||||
import org.springframework.data.relational.core.sql.LockOptions;
|
||||
|
||||
@@ -16,7 +16,6 @@
|
||||
package org.springframework.data.relational.core.sql.render;
|
||||
|
||||
import org.springframework.data.relational.core.sql.Subselect;
|
||||
import org.springframework.lang.Nullable;
|
||||
|
||||
public class SubselectVisitor extends TypedSubtreeVisitor<Subselect> {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user