Remove IResourceLoaderAware.ResourceLoader getter from the interface. [SPRNET-990]
This commit is contained in:
@@ -58,7 +58,7 @@ namespace Spring.Context
|
||||
public interface IResourceLoaderAware
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets and sets the <see cref="Spring.Core.IO.IResourceLoader"/>
|
||||
/// Sets the <see cref="Spring.Core.IO.IResourceLoader"/>
|
||||
/// that this object runs in.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
@@ -76,7 +76,6 @@ namespace Spring.Context
|
||||
IResourceLoader ResourceLoader
|
||||
{
|
||||
set;
|
||||
get;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -40,9 +40,8 @@ namespace Spring.Scheduling.Quartz
|
||||
resourceLoader = new ConfigurableResourceLoader();
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Gets and sets the <see cref="Spring.Core.IO.IResourceLoader"/>
|
||||
/// Sets the <see cref="Spring.Core.IO.IResourceLoader"/>
|
||||
/// that this object runs in.
|
||||
/// </summary>
|
||||
/// <value></value>
|
||||
@@ -59,7 +58,6 @@ namespace Spring.Scheduling.Quartz
|
||||
public virtual IResourceLoader ResourceLoader
|
||||
{
|
||||
set { resourceLoader = (value != null ? value : new ConfigurableResourceLoader()); }
|
||||
get { return resourceLoader; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user