Update of /cvsroot/springnet/Spring.Net/src/Spring/Spring.Core/Context/Support
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv7120
Modified Files:
GenericApplicationContext.cs
Log Message:
SPRNET-871 - GenericApplicationContext.ctor(IApplicationContext) always throws NullReferenceException
Index: GenericApplicationContext.cs
===================================================================
RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Core/Context/Support/GenericApplicationContext.cs,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** GenericApplicationContext.cs 8 Aug 2007 17:46:37 -0000 1.4
--- GenericApplicationContext.cs 17 Feb 2008 13:34:44 -0000 1.5
***************
*** 96,99 ****
--- 96,100 ----
public GenericApplicationContext(IApplicationContext parent)
{
+ objectFactory = new DefaultListableObjectFactory();
ParentContext = parent;
}
|