reverting breaking change in visibility to ConfigurationLocations and ConfigurationSources in AbstractXmlApplicationContext and derived types
This commit is contained in:
@@ -97,7 +97,7 @@ namespace Spring.Context.Support
|
||||
/// <returns>
|
||||
/// An array of resource locations, or <see langword="null"/> if none.
|
||||
/// </returns>
|
||||
public abstract string[] ConfigurationLocations { get; }
|
||||
protected abstract string[] ConfigurationLocations { get; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
@@ -114,7 +114,7 @@ namespace Spring.Context.Support
|
||||
/// <returns>
|
||||
/// An array of <see cref="Spring.Core.IO.IResource"/>s, or <see langword="null"/> if none.
|
||||
/// </returns>
|
||||
public abstract IResource[] ConfigurationResources { get; }
|
||||
protected abstract IResource[] ConfigurationResources { get; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
|
||||
@@ -266,7 +266,7 @@ namespace Spring.Context.Support
|
||||
/// An array of resource locations, or <see langword="null"/> if none.
|
||||
/// </returns>
|
||||
/// <seealso cref="Spring.Context.Support.AbstractXmlApplicationContext.ConfigurationLocations"/>
|
||||
public override string[] ConfigurationLocations
|
||||
protected override string[] ConfigurationLocations
|
||||
{
|
||||
get { return _configurationLocations; }
|
||||
}
|
||||
@@ -278,7 +278,7 @@ namespace Spring.Context.Support
|
||||
/// An array of <see cref="Spring.Core.IO.IResource"/>s, or <see langword="null"/> if none.
|
||||
/// </returns>
|
||||
/// <seealso cref="Spring.Context.Support.AbstractXmlApplicationContext.ConfigurationLocations"/>
|
||||
public override IResource[] ConfigurationResources
|
||||
protected override IResource[] ConfigurationResources
|
||||
{
|
||||
get { return _configurationResources; }
|
||||
}
|
||||
|
||||
@@ -119,7 +119,7 @@ namespace Spring.Context.Support
|
||||
/// <returns>
|
||||
/// An array of resource locations, or <see langword="null"/> if none.
|
||||
/// </returns>
|
||||
public override string[] ConfigurationLocations
|
||||
protected override string[] ConfigurationLocations
|
||||
{
|
||||
get { return _configurationLocations; }
|
||||
}
|
||||
@@ -139,7 +139,7 @@ namespace Spring.Context.Support
|
||||
/// <returns>
|
||||
/// An array of <see cref="Spring.Core.IO.IResource"/>s, or <see langword="null"/> if none.
|
||||
/// </returns>
|
||||
public override IResource[] ConfigurationResources
|
||||
protected override IResource[] ConfigurationResources
|
||||
{
|
||||
get { return _configurationResources; }
|
||||
}
|
||||
|
||||
@@ -119,7 +119,7 @@ namespace Spring.Context.Support
|
||||
/// <returns>
|
||||
/// An array of resource locations, or <see langword="null"/> if none.
|
||||
/// </returns>
|
||||
public override string[] ConfigurationLocations
|
||||
protected override string[] ConfigurationLocations
|
||||
{
|
||||
get { return _configurationLocations; }
|
||||
}
|
||||
@@ -139,7 +139,7 @@ namespace Spring.Context.Support
|
||||
/// <returns>
|
||||
/// An array of <see cref="Spring.Core.IO.IResource"/>s, or <see langword="null"/> if none.
|
||||
/// </returns>
|
||||
public override IResource[] ConfigurationResources
|
||||
protected override IResource[] ConfigurationResources
|
||||
{
|
||||
get { return _configurationResources; }
|
||||
}
|
||||
|
||||
@@ -119,7 +119,7 @@ namespace Spring.Context.Support
|
||||
/// <returns>
|
||||
/// An array of resource locations, or <see langword="null"/> if none.
|
||||
/// </returns>
|
||||
public override string[] ConfigurationLocations
|
||||
protected override string[] ConfigurationLocations
|
||||
{
|
||||
get { return _configurationLocations; }
|
||||
}
|
||||
@@ -139,7 +139,7 @@ namespace Spring.Context.Support
|
||||
/// <returns>
|
||||
/// An array of <see cref="Spring.Core.IO.IResource"/>s, or <see langword="null"/> if none.
|
||||
/// </returns>
|
||||
public override IResource[] ConfigurationResources
|
||||
protected override IResource[] ConfigurationResources
|
||||
{
|
||||
get { return _configurationResources; }
|
||||
}
|
||||
|
||||
@@ -378,7 +378,7 @@ namespace Spring.Context.Support
|
||||
/// An array of resource locations, or <see langword="null"/> if none.
|
||||
/// </returns>
|
||||
/// <seealso cref="Spring.Context.Support.AbstractXmlApplicationContext.ConfigurationLocations"/>
|
||||
public override string[] ConfigurationLocations
|
||||
protected override string[] ConfigurationLocations
|
||||
{
|
||||
get { return _configurationLocations; }
|
||||
}
|
||||
@@ -390,7 +390,7 @@ namespace Spring.Context.Support
|
||||
/// An array of <see cref="Spring.Core.IO.IResource"/>s, or <see langword="null"/> if none.
|
||||
/// </returns>
|
||||
/// <seealso cref="Spring.Context.Support.AbstractXmlApplicationContext.ConfigurationLocations"/>
|
||||
public override IResource[] ConfigurationResources
|
||||
protected override IResource[] ConfigurationResources
|
||||
{
|
||||
get { return _configurationResources; }
|
||||
}
|
||||
|
||||
@@ -57,12 +57,12 @@ namespace Spring.Transaction.Config
|
||||
objectDefinitionReader.LoadObjectDefinitions(configurationResources);
|
||||
}
|
||||
|
||||
public override string[] ConfigurationLocations
|
||||
protected override string[] ConfigurationLocations
|
||||
{
|
||||
get { return null; }
|
||||
}
|
||||
|
||||
public override IResource[] ConfigurationResources
|
||||
protected override IResource[] ConfigurationResources
|
||||
{
|
||||
get { return null; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user