File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/main/java/org/springframework/data/mapping Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments