mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-15 04:35:00 +00:00
Fixing bug in CollectionExtensions RemoveAll method
This commit is contained in:
@@ -42,7 +42,7 @@ namespace ICD.Common.Utils.Xml
|
||||
throw new ArgumentNullException("extends");
|
||||
|
||||
if (!extends.HasAttributes)
|
||||
return new IcdXmlAttribute[0];
|
||||
return Enumerable.Empty<IcdXmlAttribute>();
|
||||
|
||||
List<IcdXmlAttribute> attributes = new List<IcdXmlAttribute>();
|
||||
while (extends.MoveToNextAttribute())
|
||||
|
||||
Reference in New Issue
Block a user