From a5f2cfb19a4c29c81694e3d4ae5bf408b32083e4 Mon Sep 17 00:00:00 2001 From: ByungjunYou <112383393+ByungjunYou@users.noreply.github.com> Date: Wed, 30 Nov 2022 22:22:44 +0900 Subject: [PATCH] fix a typo in javadoc This is a fix to correct a typo in the javadoc of the PersistentEntityIsNewStrategy class. PersistentEntityIsNewStrategy uses the identifier of the given entity as a fall back property to decide whether the entity is new or not. --- .../data/mapping/model/PersistentEntityIsNewStrategy.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/springframework/data/mapping/model/PersistentEntityIsNewStrategy.java b/src/main/java/org/springframework/data/mapping/model/PersistentEntityIsNewStrategy.java index 092a13b083..f851b82996 100644 --- a/src/main/java/org/springframework/data/mapping/model/PersistentEntityIsNewStrategy.java +++ b/src/main/java/org/springframework/data/mapping/model/PersistentEntityIsNewStrategy.java @@ -24,7 +24,7 @@ import org.springframework.util.ClassUtils; /** - * An {@link IsNewStrategy} to use a {@link PersistentEntity}'s version property followed by it + * An {@link IsNewStrategy} to use a {@link PersistentEntity}'s version property followed by identifier * * @author Oliver Gierke * @author Mark Paluch