Skip to content

Commit a297af9

Browse files
Jongil Kimschauder
authored andcommitted
Fix typos.
Signed-off-by: Kim Jongil <whddlf0504@naver.com> Original pull request #3430 # Conflicts: # src/main/java/org/springframework/data/mapping/PropertyReferenceException.java
1 parent 2c46503 commit a297af9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

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

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

6464
this.propertyName = propertyName;
6565
this.type = type;
66-
this.alreadyResolvedPath = alreadyResolvedPah;
66+
this.alreadyResolvedPath = alreadyResolvedPath;
6767
this.propertyMatches = Lazy.of(() -> detectPotentialMatches(propertyName, type.getType()));
6868
}
6969

0 commit comments

Comments
 (0)