From 4b021118a5dd00eae49661c5c74e04883d05daae 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 --- .../data/core/PropertyReferenceException.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/springframework/data/core/PropertyReferenceException.java b/src/main/java/org/springframework/data/core/PropertyReferenceException.java index ebfa03e8c7..588328b094 100644 --- a/src/main/java/org/springframework/data/core/PropertyReferenceException.java +++ b/src/main/java/org/springframework/data/core/PropertyReferenceException.java @@ -53,18 +53,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())); }