diff --git a/src/Spring/Spring.Web.Mvc/Context/Support/MvcApplicationContext.cs b/src/Spring/Spring.Web.Mvc/Context/Support/MvcApplicationContext.cs
index 9484fdbd..da2af790 100644
--- a/src/Spring/Spring.Web.Mvc/Context/Support/MvcApplicationContext.cs
+++ b/src/Spring/Spring.Web.Mvc/Context/Support/MvcApplicationContext.cs
@@ -119,7 +119,7 @@ namespace Spring.Context.Support
///
/// An array of resource locations, or if none.
///
- protected override string[] ConfigurationLocations
+ public override string[] ConfigurationLocations
{
get { return _configurationLocations; }
}
@@ -139,7 +139,7 @@ namespace Spring.Context.Support
///
/// An array of s, or if none.
///
- protected override IResource[] ConfigurationResources
+ public override IResource[] ConfigurationResources
{
get { return _configurationResources; }
}
diff --git a/src/Spring/Spring.Web.Mvc3/Context/Support/MvcApplicationContext.cs b/src/Spring/Spring.Web.Mvc3/Context/Support/MvcApplicationContext.cs
index bfb6cf4b..9ba1d173 100644
--- a/src/Spring/Spring.Web.Mvc3/Context/Support/MvcApplicationContext.cs
+++ b/src/Spring/Spring.Web.Mvc3/Context/Support/MvcApplicationContext.cs
@@ -119,7 +119,7 @@ namespace Spring.Context.Support
///
/// An array of resource locations, or if none.
///
- protected override string[] ConfigurationLocations
+ public override string[] ConfigurationLocations
{
get { return _configurationLocations; }
}
@@ -139,7 +139,7 @@ namespace Spring.Context.Support
///
/// An array of s, or if none.
///
- protected override IResource[] ConfigurationResources
+ public override IResource[] ConfigurationResources
{
get { return _configurationResources; }
}
diff --git a/test/Spring/Spring.Data.Tests/Transaction/Config/TxNamespaceParserTests.cs b/test/Spring/Spring.Data.Tests/Transaction/Config/TxNamespaceParserTests.cs
index 48d65ffa..ab14d605 100644
--- a/test/Spring/Spring.Data.Tests/Transaction/Config/TxNamespaceParserTests.cs
+++ b/test/Spring/Spring.Data.Tests/Transaction/Config/TxNamespaceParserTests.cs
@@ -57,12 +57,12 @@ namespace Spring.Transaction.Config
objectDefinitionReader.LoadObjectDefinitions(configurationResources);
}
- protected override string[] ConfigurationLocations
+ public override string[] ConfigurationLocations
{
get { return null; }
}
- protected override IResource[] ConfigurationResources
+ public override IResource[] ConfigurationResources
{
get { return null; }
}