SPRSPRNET-998

Fixing broken build (accidental use of the improper var keyword) /slaps self on back of hand/
This commit is contained in:
sbohlen
2010-08-09 14:10:23 +00:00
parent 36f6310fb4
commit 5791c6eefc

View File

@@ -1055,7 +1055,7 @@ namespace Spring.Util
if (constructorArguments == null)
return value;
var arguments = new object[constructorArguments.Count];
object[] arguments = new object[constructorArguments.Count];
for (int i = 0; i < constructorArguments.Count; i++)
{