File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
grails-shell/src/main/groovy/org/grails/cli/profile Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -349,10 +349,10 @@ abstract class AbstractProfile implements Profile {
349349
350350 @Override
351351 public Iterable<Profile > getExtends () {
352- return parentNames. collect() { String name ->
353- def parent = profileRepository. getProfile(name , true )
352+ return parentNames. collect() { String parentName ->
353+ def parent = profileRepository. getProfile(parentName , true )
354354 if (parent == null ) {
355- throw new IllegalStateException (" Profile [$name ] declares an invalid dependency on parent profile [$n ame ]" )
355+ throw new IllegalStateException (" Profile [$name ] declares an invalid dependency on parent profile [$p arentName ]" )
356356 }
357357 return parent
358358 }
You can’t perform that action at this time.
0 commit comments