SPRNET-1526 - fix error in ctor args

This commit is contained in:
Steve Bohlen
2015-01-29 20:56:57 -05:00
parent 4667eeb37b
commit 9b54b7af2e

View File

@@ -254,7 +254,7 @@ namespace Spring.Context.Support
IApplicationContext parentContext,
string[] configurationLocations,
IResource[] configurationResources)
: this(new XmlApplicationContextArgs(name, parentContext, configurationLocations, null, caseSensitive, refresh))
: this(new XmlApplicationContextArgs(name, parentContext, configurationLocations, configurationResources, caseSensitive, refresh))
{ }