Remove IResourceLoaderAware.ResourceLoader getter from the interface. [SPRNET-990]

This commit is contained in:
bbaia
2008-08-05 14:01:47 +00:00
parent e410a395e4
commit 56fb2cc5ce
2 changed files with 2 additions and 5 deletions

View File

@@ -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;
}
}
}

View File

@@ -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>