DATACMNS-663 - Fixed typo in BytecodeGeneratingEntityInstantiator.
This commit is contained in:
@@ -105,7 +105,7 @@ public enum BytecodeGeneratingEntityInstantiator implements EntityInstantiator {
|
||||
*/
|
||||
private EntityInstantiator createEntityInstantiator(PersistentEntity<?, ?> entity) {
|
||||
|
||||
if (shoudUseReflectionEntityInstantiator(entity)) {
|
||||
if (shouldUseReflectionEntityInstantiator(entity)) {
|
||||
return ReflectionEntityInstantiator.INSTANCE;
|
||||
}
|
||||
|
||||
@@ -120,7 +120,7 @@ public enum BytecodeGeneratingEntityInstantiator implements EntityInstantiator {
|
||||
* @param entity
|
||||
* @return
|
||||
*/
|
||||
private boolean shoudUseReflectionEntityInstantiator(PersistentEntity<?, ?> entity) {
|
||||
private boolean shouldUseReflectionEntityInstantiator(PersistentEntity<?, ?> entity) {
|
||||
|
||||
Class<?> type = entity.getType();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user