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