Skip to content

Commit 574e3a3

Browse files
committed
Fix parseFlatKeys parameter. Accidentally set to true
1 parent 8a1ab15 commit 574e3a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

grails-core/src/main/groovy/org/grails/plugins/AbstractGrailsPlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public AbstractGrailsPlugin(Class<?> pluginClass, GrailsApplication application)
9393
try {
9494
if (filename.equals(PLUGIN_YML)) {
9595
YamlPropertySourceLoader propertySourceLoader = new YamlPropertySourceLoader();
96-
this.propertySource = propertySourceLoader.load(GrailsNameUtils.getLogicalPropertyName(pluginClass.getSimpleName(), "GrailsPlugin") + "-" + PLUGIN_YML, resource, null, true, DEFAULT_CONFIG_IGNORE_LIST);
96+
this.propertySource = propertySourceLoader.load(GrailsNameUtils.getLogicalPropertyName(pluginClass.getSimpleName(), "GrailsPlugin") + "-" + PLUGIN_YML, resource, null, false, DEFAULT_CONFIG_IGNORE_LIST);
9797
} else if (filename.equals(PLUGIN_GROOVY)) {
9898
GroovyConfigPropertySourceLoader propertySourceLoader = new GroovyConfigPropertySourceLoader();
9999
this.propertySource = propertySourceLoader.load(GrailsNameUtils.getLogicalPropertyName(pluginClass.getSimpleName(), "GrailsPlugin") + "-" + PLUGIN_GROOVY, resource, null, DEFAULT_CONFIG_IGNORE_LIST);

0 commit comments

Comments
 (0)