--- C:/export/java/Groovy/groovy-1.1-beta-3/src/main/groovy/util/ConfigSlurper-save.groovy Fri Sep 21 00:40:58 2007 +++ C:/export/java/Groovy/groovy-1.1-beta-3/src/main/groovy/util/ConfigSlurper.groovy Thu Oct 11 10:10:30 2007 @@ -159,8 +159,9 @@ if(current[name]) { result = current[name] - } - else { + } else if (config[name]) { + result = config[name] + } else { result = new ConfigObject() current[name] = result }