From a297af9e91bf327231bcfff800f256a19d1a1d6d Mon Sep 17 00:00:00 2001 From: Jongil Kim Date: Tue, 16 Dec 2025 14:14:27 +0900 Subject: [PATCH] Fix typos. Signed-off-by: Kim Jongil Original pull request #3430 # Conflicts: # src/main/java/org/springframework/data/mapping/PropertyReferenceException.java --- .../data/mapping/PropertyReferenceException.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/springframework/data/mapping/PropertyReferenceException.java b/src/main/java/org/springframework/data/mapping/PropertyReferenceException.java index e9297173c..f7267b642 100644 --- a/src/main/java/org/springframework/data/mapping/PropertyReferenceException.java +++ b/src/main/java/org/springframework/data/mapping/PropertyReferenceException.java @@ -52,18 +52,18 @@ public class PropertyReferenceException extends RuntimeException { * * @param propertyName the name of the property not found on the given type, must not be {@literal null} or empty. * @param type the type the property could not be found on, must not be {@literal null}. - * @param alreadyResolvedPah the previously calculated {@link PropertyPath}s, must not be {@literal null}. + * @param alreadyResolvedPath the previously calculated {@link PropertyPath}s, must not be {@literal null}. */ public PropertyReferenceException(String propertyName, TypeInformation type, - List alreadyResolvedPah) { + List alreadyResolvedPath) { Assert.hasText(propertyName, "Property name must not be null"); Assert.notNull(type, "Type must not be null"); - Assert.notNull(alreadyResolvedPah, "Already resolved paths must not be null"); + Assert.notNull(alreadyResolvedPath, "Already resolved paths must not be null"); this.propertyName = propertyName; this.type = type; - this.alreadyResolvedPath = alreadyResolvedPah; + this.alreadyResolvedPath = alreadyResolvedPath; this.propertyMatches = Lazy.of(() -> detectPotentialMatches(propertyName, type.getType())); }