Index: Ringtoets/Common/src/Ringtoets.Common.IO/Readers/ConfigurationReader.cs
===================================================================
diff -u -r24a4e65f8626b984a0345e3b3b505c768da360f3 -rb0021f2db39d2455a22c14bd3708ff2fc2a9e817
--- Ringtoets/Common/src/Ringtoets.Common.IO/Readers/ConfigurationReader.cs (.../ConfigurationReader.cs) (revision 24a4e65f8626b984a0345e3b3b505c768da360f3)
+++ Ringtoets/Common/src/Ringtoets.Common.IO/Readers/ConfigurationReader.cs (.../ConfigurationReader.cs) (revision b0021f2db39d2455a22c14bd3708ff2fc2a9e817)
@@ -40,7 +40,7 @@
///
/// The type of calculation items read from XML.
public abstract class ConfigurationReader
- where TCalculationItem : IReadCalculationItem
+ where TCalculationItem : IReadConfigurationItem
{
private readonly XDocument xmlDocument;
@@ -71,12 +71,12 @@
}
///
- /// Reads the configuration from the XML and creates a collection of corresponding .
+ /// Reads the configuration from the XML and creates a collection of corresponding .
///
- /// A collection of read .
- public IEnumerable Read()
+ /// A collection of read .
+ public IEnumerable Read()
{
- return ParseReadCalculationItems(xmlDocument.Root?.Elements());
+ return ParseReadConfigurationItems(xmlDocument.Root?.Elements());
}
///
@@ -171,7 +171,7 @@
}
}
- private IEnumerable ParseReadCalculationItems(IEnumerable elements)
+ private IEnumerable ParseReadConfigurationItems(IEnumerable elements)
{
foreach (XElement element in elements)
{
@@ -190,7 +190,7 @@
private ReadCalculationGroup ParseReadCalculationGroup(XElement folderElement)
{
return new ReadCalculationGroup(folderElement.Attribute(ConfigurationSchemaIdentifiers.NameAttribute)?.Value,
- ParseReadCalculationItems(folderElement.Elements()));
+ ParseReadConfigurationItems(folderElement.Elements()));
}
}
}
\ No newline at end of file