We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19ab5ee commit bd628a0Copy full SHA for bd628a0
src/main/java/org/springframework/data/mapping/model/BasicPersistentEntity.java
@@ -403,7 +403,7 @@ public PersistentPropertyAccessor getPropertyAccessor(Object bean) {
403
@Override
404
public IdentifierAccessor getIdentifierAccessor(Object bean) {
405
406
- Assert.notNull(bean, "Targte bean must not be null!");
+ Assert.notNull(bean, "Target bean must not be null!");
407
Assert.isTrue(getType().isInstance(bean), "Target bean is not of type of the persistent entity!");
408
409
return hasIdProperty() ? new IdPropertyIdentifierAccessor(this, bean) : NullReturningIdentifierAccessor.INSTANCE;
0 commit comments