From 5791c6eefcb5191191fff6ae7f42597104c0fda5 Mon Sep 17 00:00:00 2001 From: sbohlen Date: Mon, 9 Aug 2010 14:10:23 +0000 Subject: [PATCH] SPRSPRNET-998 Fixing broken build (accidental use of the improper var keyword) /slaps self on back of hand/ --- src/Spring/Spring.Core/Util/ReflectionUtils.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Spring/Spring.Core/Util/ReflectionUtils.cs b/src/Spring/Spring.Core/Util/ReflectionUtils.cs index d41b5490..4880ba55 100644 --- a/src/Spring/Spring.Core/Util/ReflectionUtils.cs +++ b/src/Spring/Spring.Core/Util/ReflectionUtils.cs @@ -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++) {