File tree 6 files changed +5
-14
lines changed
src/main/java/org/springframework/data/jpa
6 files changed +5
-14
lines changed Original file line number Diff line number Diff line change @@ -124,15 +124,6 @@ public Class<?> getActualType() {
124
124
: super .getActualType ();
125
125
}
126
126
127
- /*
128
- * (non-Javadoc)
129
- * @see org.springframework.data.mapping.PersistentProperty#getPersistentEntityTypes()
130
- */
131
- @ Override
132
- public Iterable <? extends TypeInformation <?>> getPersistentEntityTypes () {
133
- return getPersistentEntityTypeInformation ();
134
- }
135
-
136
127
/*
137
128
* (non-Javadoc)
138
129
* @see org.springframework.data.mapping.model.AbstractPersistentProperty#getPersistentEntityTypeInformation()
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ public abstract class AbstractJpaQuery implements RepositoryQuery {
69
69
private final PersistenceProvider provider ;
70
70
private final Lazy <JpaQueryExecution > execution ;
71
71
72
- final Lazy <ParameterBinder > parameterBinder = new Lazy <> (this ::createBinder );
72
+ final Lazy <ParameterBinder > parameterBinder = Lazy . of (this ::createBinder );
73
73
74
74
/**
75
75
* Creates a new {@link AbstractJpaQuery} from the given {@link JpaQueryMethod}.
Original file line number Diff line number Diff line change 34
34
import org .springframework .data .domain .SliceImpl ;
35
35
import org .springframework .data .jpa .provider .PersistenceProvider ;
36
36
import org .springframework .data .repository .core .support .SurroundingTransactionDetectorMethodInterceptor ;
37
- import org .springframework .data .repository . support .PageableExecutionUtils ;
37
+ import org .springframework .data .support .PageableExecutionUtils ;
38
38
import org .springframework .data .util .CloseableIterator ;
39
39
import org .springframework .data .util .StreamUtils ;
40
40
import org .springframework .lang .Nullable ;
Original file line number Diff line number Diff line change 29
29
import org .springframework .data .querydsl .EntityPathResolver ;
30
30
import org .springframework .data .querydsl .QSort ;
31
31
import org .springframework .data .querydsl .QuerydslPredicateExecutor ;
32
- import org .springframework .data .repository . support .PageableExecutionUtils ;
32
+ import org .springframework .data .support .PageableExecutionUtils ;
33
33
import org .springframework .lang .Nullable ;
34
34
import org .springframework .util .Assert ;
35
35
Original file line number Diff line number Diff line change 30
30
import org .springframework .data .querydsl .QSort ;
31
31
import org .springframework .data .querydsl .QuerydslPredicateExecutor ;
32
32
import org .springframework .data .querydsl .SimpleEntityPathResolver ;
33
- import org .springframework .data .repository . support .PageableExecutionUtils ;
33
+ import org .springframework .data .support .PageableExecutionUtils ;
34
34
import org .springframework .lang .Nullable ;
35
35
import org .springframework .util .Assert ;
36
36
Original file line number Diff line number Diff line change 52
52
import org .springframework .data .jpa .repository .query .EscapeCharacter ;
53
53
import org .springframework .data .jpa .repository .query .QueryUtils ;
54
54
import org .springframework .data .jpa .repository .support .QueryHints .NoHints ;
55
- import org .springframework .data .repository . support .PageableExecutionUtils ;
55
+ import org .springframework .data .support .PageableExecutionUtils ;
56
56
import org .springframework .data .util .ProxyUtils ;
57
57
import org .springframework .data .util .Streamable ;
58
58
import org .springframework .lang .Nullable ;
You can’t perform that action at this time.
0 commit comments