File tree Expand file tree Collapse file tree 3 files changed +2
-11
lines changed
src/main/java/org/springframework/data/jpa Expand file tree Collapse file tree 3 files changed +2
-11
lines changed Original file line number Diff line number Diff line change @@ -124,15 +124,6 @@ public Class<?> getActualType() {
124124 : super .getActualType ();
125125 }
126126
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-
136127 /*
137128 * (non-Javadoc)
138129 * @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 {
6969 private final PersistenceProvider provider ;
7070 private final Lazy <JpaQueryExecution > execution ;
7171
72- final Lazy <ParameterBinder > parameterBinder = new Lazy <> (this ::createBinder );
72+ final Lazy <ParameterBinder > parameterBinder = Lazy . of (this ::createBinder );
7373
7474 /**
7575 * Creates a new {@link AbstractJpaQuery} from the given {@link JpaQueryMethod}.
Original file line number Diff line number Diff line change 3232import org .springframework .data .querydsl .QuerydslPredicateExecutor ;
3333import org .springframework .data .querydsl .SimpleEntityPathResolver ;
3434import org .springframework .data .repository .query .FluentQuery ;
35- import org .springframework .data .repository . support .PageableExecutionUtils ;
35+ import org .springframework .data .support .PageableExecutionUtils ;
3636import org .springframework .lang .Nullable ;
3737import org .springframework .util .Assert ;
3838
You can’t perform that action at this time.
0 commit comments