Skip to content

Commit 4b02111

Browse files
Jongil KimRattiel
authored andcommitted
Fix typos
Signed-off-by: Kim Jongil <whddlf0504@naver.com>
1 parent a4fd7d3 commit 4b02111

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main/java/org/springframework/data/core/PropertyReferenceException.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,18 +53,18 @@ public class PropertyReferenceException extends RuntimeException {
5353
*
5454
* @param propertyName the name of the property not found on the given type, must not be {@literal null} or empty.
5555
* @param type the type the property could not be found on, must not be {@literal null}.
56-
* @param alreadyResolvedPah the previously calculated {@link PropertyPath}s, must not be {@literal null}.
56+
* @param alreadyResolvedPath the previously calculated {@link PropertyPath}s, must not be {@literal null}.
5757
*/
5858
public PropertyReferenceException(String propertyName, TypeInformation<?> type,
59-
List<? extends PropertyPath> alreadyResolvedPah) {
59+
List<? extends PropertyPath> alreadyResolvedPath) {
6060

6161
Assert.hasText(propertyName, "Property name must not be null");
6262
Assert.notNull(type, "Type must not be null");
63-
Assert.notNull(alreadyResolvedPah, "Already resolved paths must not be null");
63+
Assert.notNull(alreadyResolvedPath, "Already resolved paths must not be null");
6464

6565
this.propertyName = propertyName;
6666
this.type = type;
67-
this.alreadyResolvedPath = alreadyResolvedPah;
67+
this.alreadyResolvedPath = alreadyResolvedPath;
6868
this.propertyMatches = Lazy.of(() -> detectPotentialMatches(propertyName, type.getType()));
6969
}
7070

0 commit comments

Comments
 (0)