Index: Ringtoets/Common/src/Ringtoets.Common.Data/UpdateDataStrategies/UpdateDataStrategyBase.cs
===================================================================
diff -u -r352102f53efcda2247dd7ff8c2d833eccc709c4d -raae2ecaacbb094fe66d6a54d6ac4b1e6780b0864
--- Ringtoets/Common/src/Ringtoets.Common.Data/UpdateDataStrategies/UpdateDataStrategyBase.cs (.../UpdateDataStrategyBase.cs) (revision 352102f53efcda2247dd7ff8c2d833eccc709c4d)
+++ Ringtoets/Common/src/Ringtoets.Common.Data/UpdateDataStrategies/UpdateDataStrategyBase.cs (.../UpdateDataStrategyBase.cs) (revision aae2ecaacbb094fe66d6a54d6ac4b1e6780b0864)
@@ -37,18 +37,16 @@
///
///
/// The target data type.
- /// The feature of the target data that should be validated on for the uniqueness of elements.
/// The failure mechanism in which the target collection should be updated.
- public abstract class UpdateDataStrategyBase
- where TTargetData : class
- where TFeature : class
- where TFailureMechanism : IFailureMechanism
+ public abstract class UpdateDataStrategyBase
+ where TTargetData : class
+ where TFailureMechanism : IFailureMechanism
{
protected readonly TFailureMechanism failureMechanism;
private readonly IEqualityComparer equalityComparer;
///
- /// Instantiates a object.
+ /// Instantiates a object.
///
/// The failure mechanism which needs to be updated.
/// The comparer which should be used to determine when two objects are equal.
@@ -99,7 +97,7 @@
/// .
/// Thrown when duplicate items are found during the
/// update of the items in the .
- protected IEnumerable UpdateTargetCollectionData(ObservableUniqueItemCollectionWithSourcePath targetDataCollection,
+ protected IEnumerable UpdateTargetCollectionData(ObservableUniqueItemCollectionWithSourcePath targetDataCollection,
IEnumerable importedDataCollection,
string sourceFilePath)
{
@@ -133,7 +131,7 @@
/// .
/// Thrown when duplicate items are found during the
/// update of the items to be updatd in the .
- private IEnumerable ModifyDataCollection(ObservableUniqueItemCollectionWithSourcePath targetDataCollection,
+ private IEnumerable ModifyDataCollection(ObservableUniqueItemCollectionWithSourcePath targetDataCollection,
IEnumerable importedDataCollection,
string sourceFilePath)
{