Remove unused imports.

Original pull request #1877
This commit is contained in:
Tran Ngoc Nhan
2024-09-08 04:39:39 +07:00
committed by Jens Schauder
parent 72774135a7
commit 7b2c4e5f23
8 changed files with 0 additions and 18 deletions

View File

@@ -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<>();
/**

View File

@@ -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;

View File

@@ -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> {