DATACMNS-1592 - Polishing.

Tweak docs.
This commit is contained in:
Mark Paluch
2019-11-26 13:56:21 +01:00
parent e9a0ed7123
commit a16c2ce3c4
2 changed files with 3 additions and 1 deletions

View File

@@ -160,7 +160,7 @@ class Person {
private final @Id Long id; <1>
private final String firstname, lastname; <2>
private final LocalDate birthday;
private final int age; <3>
private final int age; <3>
private String comment; <4>
private @AccessType(Type.PROPERTY) String remarks; <5>

View File

@@ -40,6 +40,8 @@ import org.springframework.data.mapping.context.SamplePersistentProperty;
import org.springframework.data.mapping.model.ConvertingPropertyAccessor;
/**
* Unit tests for {@link PersistentPropertyAccessor}.
*
* @author Oliver Gierke
* @author Mark Paluch
*/