File tree 3 files changed +2
-11
lines changed
src/main/java/org/springframework/data/jpa
3 files changed +2
-11
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 32
32
import org .springframework .data .querydsl .QuerydslPredicateExecutor ;
33
33
import org .springframework .data .querydsl .SimpleEntityPathResolver ;
34
34
import org .springframework .data .repository .query .FluentQuery ;
35
- import org .springframework .data .repository . support .PageableExecutionUtils ;
35
+ import org .springframework .data .support .PageableExecutionUtils ;
36
36
import org .springframework .lang .Nullable ;
37
37
import org .springframework .util .Assert ;
38
38
You can’t perform that action at this time.
0 commit comments