removes unneeded class

This commit is contained in:
Shannon
2015-07-23 17:57:02 +02:00
parent 11c7955b1e
commit 5c91c204fa

View File

@@ -16,31 +16,7 @@ using Lucene.Net.Analysis;
namespace UmbracoExamine
{
internal class LazyEnumerableXmlCollection : IEnumerable<XElement>
{
/// <summary>
/// Returns an enumerator that iterates through the collection.
/// </summary>
/// <returns>
/// An enumerator that can be used to iterate through the collection.
/// </returns>
public IEnumerator<XElement> GetEnumerator()
{
throw new NotImplementedException();
}
/// <summary>
/// Returns an enumerator that iterates through a collection.
/// </summary>
/// <returns>
/// An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.
/// </returns>
IEnumerator IEnumerable.GetEnumerator()
{
return GetEnumerator();
}
}
/// <summary>
/// Custom indexer for members
/// </summary>