Index: DamEngine/trunk/src/Deltares.DamEngine.Data/Geotechnics/CharacteristicPoint.cs
===================================================================
diff -u -r6254 -r6256
--- DamEngine/trunk/src/Deltares.DamEngine.Data/Geotechnics/CharacteristicPoint.cs (.../CharacteristicPoint.cs) (revision 6254)
+++ DamEngine/trunk/src/Deltares.DamEngine.Data/Geotechnics/CharacteristicPoint.cs (.../CharacteristicPoint.cs) (revision 6256)
@@ -70,64 +70,8 @@
/// Gets or sets the characteristic point set associated containing this point.
///
public CharacteristicPointSet PointSet { get; set; }
-
+
///
- /// Determines whether is equal to .
- ///
- /// The point at the left of the operator.
- /// The point at the right of the operator.
- /// true if the point is equal to the point; otherwise, false.
- public static bool operator ==(CharacteristicPoint left, CharacteristicPoint right)
- {
- if (ReferenceEquals(left, null))
- {
- return ReferenceEquals(right, null);
- }
-
- return left.Equals(right);
- }
-
- public static bool operator >(CharacteristicPoint left, CharacteristicPoint right)
- {
- throw new NotImplementedException();
- }
-
- public static bool operator <(CharacteristicPoint left, CharacteristicPoint right)
- {
- throw new NotImplementedException();
- }
-
- ///
- /// Determines whether is different from .
- ///
- /// The point at the left of the operator.
- /// The point at the right of the operator.
- /// true if the point is different from the point; otherwise, false.
- public static bool operator !=(CharacteristicPoint left, CharacteristicPoint right)
- {
- return !(left == right);
- }
-
- public override bool Equals(object obj)
- {
- var a = obj as CharacteristicPoint;
- if (a == null)
- {
- return false;
- }
-
- return this == a;
- }
-
- public override int GetHashCode()
- {
- int hash;
- hash = Point.GetHashCode();
- hash += CharacteristicPointType.GetHashCode();
- return hash;
- }
-
- ///
/// Returns a that represents this instance.
///
///