Index: src/Common/NetTopologySuite/Algorithm/CentroidArea.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r948479c1e06982dac3087d9346d8e3fbda36c2d3
--- src/Common/NetTopologySuite/Algorithm/CentroidArea.cs (.../CentroidArea.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/NetTopologySuite/Algorithm/CentroidArea.cs (.../CentroidArea.cs) (revision 948479c1e06982dac3087d9346d8e3fbda36c2d3)
@@ -23,11 +23,6 @@
///
///
///
- public CentroidArea() {}
-
- ///
- ///
- ///
public ICoordinate Centroid
{
get
Index: src/Common/NetTopologySuite/Algorithm/CentroidLine.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r948479c1e06982dac3087d9346d8e3fbda36c2d3
--- src/Common/NetTopologySuite/Algorithm/CentroidLine.cs (.../CentroidLine.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/NetTopologySuite/Algorithm/CentroidLine.cs (.../CentroidLine.cs) (revision 948479c1e06982dac3087d9346d8e3fbda36c2d3)
@@ -17,11 +17,6 @@
///
///
///
- public CentroidLine() {}
-
- ///
- ///
- ///
public ICoordinate Centroid
{
get
Index: src/Common/NetTopologySuite/Algorithm/CentroidPoint.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r948479c1e06982dac3087d9346d8e3fbda36c2d3
--- src/Common/NetTopologySuite/Algorithm/CentroidPoint.cs (.../CentroidPoint.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/NetTopologySuite/Algorithm/CentroidPoint.cs (.../CentroidPoint.cs) (revision 948479c1e06982dac3087d9346d8e3fbda36c2d3)
@@ -16,11 +16,6 @@
///
///
///
- public CentroidPoint() {}
-
- ///
- ///
- ///
public ICoordinate Centroid
{
get
Index: src/Common/NetTopologySuite/Algorithm/NonRobustLineIntersector.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r948479c1e06982dac3087d9346d8e3fbda36c2d3
--- src/Common/NetTopologySuite/Algorithm/NonRobustLineIntersector.cs (.../NonRobustLineIntersector.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/NetTopologySuite/Algorithm/NonRobustLineIntersector.cs (.../NonRobustLineIntersector.cs) (revision 948479c1e06982dac3087d9346d8e3fbda36c2d3)
@@ -8,10 +8,6 @@
///
public class NonRobustLineIntersector : LineIntersector
{
- ///
- ///
- ///
- public NonRobustLineIntersector() {}
///
///
Index: src/Common/NetTopologySuite/Algorithm/PointLocator.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r948479c1e06982dac3087d9346d8e3fbda36c2d3
--- src/Common/NetTopologySuite/Algorithm/PointLocator.cs (.../PointLocator.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/NetTopologySuite/Algorithm/PointLocator.cs (.../PointLocator.cs) (revision 948479c1e06982dac3087d9346d8e3fbda36c2d3)
@@ -16,11 +16,6 @@
private bool isIn; // true if the point lies in or on any Geometry element
private int numBoundaries; // the number of sub-elements whose boundaries the point lies in
- ///
- /// Initializes a new instance of the class.
- ///
- public PointLocator() {}
-
///
/// Convenience method to test a point for intersection with a Geometry
///
Index: src/Common/NetTopologySuite/Algorithm/RobustLineIntersector.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r948479c1e06982dac3087d9346d8e3fbda36c2d3
--- src/Common/NetTopologySuite/Algorithm/RobustLineIntersector.cs (.../RobustLineIntersector.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/NetTopologySuite/Algorithm/RobustLineIntersector.cs (.../RobustLineIntersector.cs) (revision 948479c1e06982dac3087d9346d8e3fbda36c2d3)
@@ -11,10 +11,6 @@
///
public class RobustLineIntersector : LineIntersector
{
- ///
- ///
- ///
- public RobustLineIntersector() {}
///
///
Index: src/Common/NetTopologySuite/Features/AttributesTable.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r948479c1e06982dac3087d9346d8e3fbda36c2d3
--- src/Common/NetTopologySuite/Features/AttributesTable.cs (.../AttributesTable.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/NetTopologySuite/Features/AttributesTable.cs (.../AttributesTable.cs) (revision 948479c1e06982dac3087d9346d8e3fbda36c2d3)
@@ -15,16 +15,6 @@
private readonly Hashtable attributes = new Hashtable();
///
- /// Initialize a new attribute table.
- ///
- public AttributesTable()
- {
- // Add ID with fixed value of 0
- // AddAttribute(IndexField, typeof(Int32));
- // this[IndexField] = IndexValue;
- }
-
- ///
/// Get / Set the value of the specified attribute.
///
///
Index: src/Common/NetTopologySuite/Geometries/Utilities/ShortCircuitedGeometryVisitor.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r948479c1e06982dac3087d9346d8e3fbda36c2d3
--- src/Common/NetTopologySuite/Geometries/Utilities/ShortCircuitedGeometryVisitor.cs (.../ShortCircuitedGeometryVisitor.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/NetTopologySuite/Geometries/Utilities/ShortCircuitedGeometryVisitor.cs (.../ShortCircuitedGeometryVisitor.cs) (revision 948479c1e06982dac3087d9346d8e3fbda36c2d3)
@@ -13,11 +13,6 @@
///
///
///
- public ShortCircuitedGeometryVisitor() {}
-
- ///
- ///
- ///
///
public void ApplyTo(IGeometry geom)
{
Index: src/Common/NetTopologySuite/GeometriesGraph/DirectedEdgeStar.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r948479c1e06982dac3087d9346d8e3fbda36c2d3
--- src/Common/NetTopologySuite/GeometriesGraph/DirectedEdgeStar.cs (.../DirectedEdgeStar.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/NetTopologySuite/GeometriesGraph/DirectedEdgeStar.cs (.../DirectedEdgeStar.cs) (revision 948479c1e06982dac3087d9346d8e3fbda36c2d3)
@@ -24,11 +24,6 @@
///
///
///
- public DirectedEdgeStar() {}
-
- ///
- ///
- ///
public Label Label { get; private set; }
///
Index: src/Common/NetTopologySuite/GeometriesGraph/EdgeEndStar.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r948479c1e06982dac3087d9346d8e3fbda36c2d3
--- src/Common/NetTopologySuite/GeometriesGraph/EdgeEndStar.cs (.../EdgeEndStar.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/NetTopologySuite/GeometriesGraph/EdgeEndStar.cs (.../EdgeEndStar.cs) (revision 948479c1e06982dac3087d9346d8e3fbda36c2d3)
@@ -34,11 +34,6 @@
Locations.Null
};
- ///
- ///
- ///
- public EdgeEndStar() {}
-
///
/// The coordinate for the node this star is based at.
///
Index: src/Common/NetTopologySuite/GeometriesGraph/Index/EdgeSetIntersector.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r948479c1e06982dac3087d9346d8e3fbda36c2d3
--- src/Common/NetTopologySuite/GeometriesGraph/Index/EdgeSetIntersector.cs (.../EdgeSetIntersector.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/NetTopologySuite/GeometriesGraph/Index/EdgeSetIntersector.cs (.../EdgeSetIntersector.cs) (revision 948479c1e06982dac3087d9346d8e3fbda36c2d3)
@@ -14,11 +14,6 @@
public abstract class EdgeSetIntersector
{
///
- /// Default empty constructor.
- ///
- public EdgeSetIntersector() {}
-
- ///
/// Computes all self-intersections between edges in a set of edges,
/// allowing client to choose whether self-intersections are computed.
///
Index: src/Common/NetTopologySuite/GeometriesGraph/Index/MonotoneChainIndexer.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r948479c1e06982dac3087d9346d8e3fbda36c2d3
--- src/Common/NetTopologySuite/GeometriesGraph/Index/MonotoneChainIndexer.cs (.../MonotoneChainIndexer.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/NetTopologySuite/GeometriesGraph/Index/MonotoneChainIndexer.cs (.../MonotoneChainIndexer.cs) (revision 948479c1e06982dac3087d9346d8e3fbda36c2d3)
@@ -21,11 +21,6 @@
public class MonotoneChainIndexer
{
///
- /// Default empty constructor.
- ///
- public MonotoneChainIndexer() {}
-
- ///
///
///
///
Index: src/Common/NetTopologySuite/GeometriesGraph/Index/SimpleEdgeSetIntersector.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r948479c1e06982dac3087d9346d8e3fbda36c2d3
--- src/Common/NetTopologySuite/GeometriesGraph/Index/SimpleEdgeSetIntersector.cs (.../SimpleEdgeSetIntersector.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/NetTopologySuite/GeometriesGraph/Index/SimpleEdgeSetIntersector.cs (.../SimpleEdgeSetIntersector.cs) (revision 948479c1e06982dac3087d9346d8e3fbda36c2d3)
@@ -14,11 +14,6 @@
///
///
///
- public SimpleEdgeSetIntersector() {}
-
- ///
- ///
- ///
///
///
///
Index: src/Common/NetTopologySuite/GeometriesGraph/Index/SimpleMCSweepLineIntersector.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r948479c1e06982dac3087d9346d8e3fbda36c2d3
--- src/Common/NetTopologySuite/GeometriesGraph/Index/SimpleMCSweepLineIntersector.cs (.../SimpleMCSweepLineIntersector.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/NetTopologySuite/GeometriesGraph/Index/SimpleMCSweepLineIntersector.cs (.../SimpleMCSweepLineIntersector.cs) (revision 948479c1e06982dac3087d9346d8e3fbda36c2d3)
@@ -9,6 +9,8 @@
/// drastically improves the average-case time.
/// The use of MonotoneChains as the items in the index
/// seems to offer an improvement in performance over a sweep-line alone.
+ /// A SimpleMCSweepLineIntersector creates monotone chains from the edges
+ /// and compares them using a simple sweep-line along the x-axis.
///
public class SimpleMCSweepLineIntersector : EdgeSetIntersector
{
@@ -18,12 +20,6 @@
private int nOverlaps;
///
- /// A SimpleMCSweepLineIntersector creates monotone chains from the edges
- /// and compares them using a simple sweep-line along the x-axis.
- ///
- public SimpleMCSweepLineIntersector() {}
-
- ///
///
///
///
Index: src/Common/NetTopologySuite/GeometriesGraph/Index/SimpleSweepLineIntersector.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r948479c1e06982dac3087d9346d8e3fbda36c2d3
--- src/Common/NetTopologySuite/GeometriesGraph/Index/SimpleSweepLineIntersector.cs (.../SimpleSweepLineIntersector.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/NetTopologySuite/GeometriesGraph/Index/SimpleSweepLineIntersector.cs (.../SimpleSweepLineIntersector.cs) (revision 948479c1e06982dac3087d9346d8e3fbda36c2d3)
@@ -19,11 +19,6 @@
///
///
///
- public SimpleSweepLineIntersector() {}
-
- ///
- ///
- ///
///
///
///
Index: src/Common/NetTopologySuite/IO/GDBWriter.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r948479c1e06982dac3087d9346d8e3fbda36c2d3
--- src/Common/NetTopologySuite/IO/GDBWriter.cs (.../GDBWriter.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/NetTopologySuite/IO/GDBWriter.cs (.../GDBWriter.cs) (revision 948479c1e06982dac3087d9346d8e3fbda36c2d3)
@@ -10,11 +10,6 @@
///
public class GDBWriter : ShapeWriter
{
- ///
- /// Creates a GDBWriter that creates objects using a basic GeometryFactory.
- ///
- public GDBWriter() : base() {}
-
///
/// Returns a byte array containing binary data for the given Geometry.
///
Index: src/Common/NetTopologySuite/IO/ShapeWriter.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r948479c1e06982dac3087d9346d8e3fbda36c2d3
--- src/Common/NetTopologySuite/IO/ShapeWriter.cs (.../ShapeWriter.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/NetTopologySuite/IO/ShapeWriter.cs (.../ShapeWriter.cs) (revision 948479c1e06982dac3087d9346d8e3fbda36c2d3)
@@ -17,11 +17,6 @@
///
protected const int InitCount = 36;
- ///
- /// Creates a ShapeWriter that creates objects using a basic GeometryFactory.
- ///
- public ShapeWriter() {}
-
///
///
///
Index: src/Common/NetTopologySuite/Index/ArrayListVisitor.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r948479c1e06982dac3087d9346d8e3fbda36c2d3
--- src/Common/NetTopologySuite/Index/ArrayListVisitor.cs (.../ArrayListVisitor.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/NetTopologySuite/Index/ArrayListVisitor.cs (.../ArrayListVisitor.cs) (revision 948479c1e06982dac3087d9346d8e3fbda36c2d3)
@@ -12,11 +12,6 @@
///
///
///
- public ArrayListVisitor() {}
-
- ///
- ///
- ///
public ArrayList Items
{
get
Index: src/Common/NetTopologySuite/Index/Bintree/NodeBase.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r948479c1e06982dac3087d9346d8e3fbda36c2d3
--- src/Common/NetTopologySuite/Index/Bintree/NodeBase.cs (.../NodeBase.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/NetTopologySuite/Index/Bintree/NodeBase.cs (.../NodeBase.cs) (revision 948479c1e06982dac3087d9346d8e3fbda36c2d3)
@@ -22,11 +22,6 @@
///
///
///
- public NodeBase() {}
-
- ///
- ///
- ///
public IList Items
{
get
Index: src/Common/NetTopologySuite/Index/Bintree/Root.cs
===================================================================
diff -u -r98a7464aa2f9a8163979b8a9d5ac617e412ba3a0 -r948479c1e06982dac3087d9346d8e3fbda36c2d3
--- src/Common/NetTopologySuite/Index/Bintree/Root.cs (.../Root.cs) (revision 98a7464aa2f9a8163979b8a9d5ac617e412ba3a0)
+++ src/Common/NetTopologySuite/Index/Bintree/Root.cs (.../Root.cs) (revision 948479c1e06982dac3087d9346d8e3fbda36c2d3)
@@ -13,11 +13,6 @@
// the singleton root node is centred at the origin.
private const double origin = 0.0;
- ///
- ///
- ///
- public Root() {}
-
///
/// Insert an item into the tree this is the root of.
///
Index: src/Common/NetTopologySuite/Index/Quadtree/NodeBase.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r948479c1e06982dac3087d9346d8e3fbda36c2d3
--- src/Common/NetTopologySuite/Index/Quadtree/NodeBase.cs (.../NodeBase.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/NetTopologySuite/Index/Quadtree/NodeBase.cs (.../NodeBase.cs) (revision 948479c1e06982dac3087d9346d8e3fbda36c2d3)
@@ -24,11 +24,6 @@
///
///
///
- public NodeBase() {}
-
- ///
- ///
- ///
public IList Items
{
get
Index: src/Common/NetTopologySuite/Index/Quadtree/Root.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r948479c1e06982dac3087d9346d8e3fbda36c2d3
--- src/Common/NetTopologySuite/Index/Quadtree/Root.cs (.../Root.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/NetTopologySuite/Index/Quadtree/Root.cs (.../Root.cs) (revision 948479c1e06982dac3087d9346d8e3fbda36c2d3)
@@ -14,11 +14,6 @@
// the singleton root quad is centred at the origin.
private static readonly ICoordinate origin = new Coordinate(0.0, 0.0);
- ///
- ///
- ///
- public Root() {}
-
///
/// Insert an item into the quadtree this is the root of.
///
Index: src/Common/NetTopologySuite/Index/Sweepline/SweepLineIndex.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r948479c1e06982dac3087d9346d8e3fbda36c2d3
--- src/Common/NetTopologySuite/Index/Sweepline/SweepLineIndex.cs (.../SweepLineIndex.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/NetTopologySuite/Index/Sweepline/SweepLineIndex.cs (.../SweepLineIndex.cs) (revision 948479c1e06982dac3087d9346d8e3fbda36c2d3)
@@ -17,11 +17,6 @@
///
///
///
- public SweepLineIndex() {}
-
- ///
- ///
- ///
///
public void Add(SweepLineInterval sweepInt)
{
Index: src/Common/NetTopologySuite/Operation/IsSimpleOp.cs
===================================================================
diff -u -r2ac736f597049cb6e036d52b604d259c010d8b35 -r948479c1e06982dac3087d9346d8e3fbda36c2d3
--- src/Common/NetTopologySuite/Operation/IsSimpleOp.cs (.../IsSimpleOp.cs) (revision 2ac736f597049cb6e036d52b604d259c010d8b35)
+++ src/Common/NetTopologySuite/Operation/IsSimpleOp.cs (.../IsSimpleOp.cs) (revision 948479c1e06982dac3087d9346d8e3fbda36c2d3)
@@ -19,11 +19,6 @@
///
///
///
- public IsSimpleOp() {}
-
- ///
- ///
- ///
///
///
public bool IsSimple(ILineString geom)
Index: src/Common/NetTopologySuite/Operation/Linemerge/LineSequencer.cs
===================================================================
diff -u -r98a7464aa2f9a8163979b8a9d5ac617e412ba3a0 -r948479c1e06982dac3087d9346d8e3fbda36c2d3
--- src/Common/NetTopologySuite/Operation/Linemerge/LineSequencer.cs (.../LineSequencer.cs) (revision 98a7464aa2f9a8163979b8a9d5ac617e412ba3a0)
+++ src/Common/NetTopologySuite/Operation/Linemerge/LineSequencer.cs (.../LineSequencer.cs) (revision 948479c1e06982dac3087d9346d8e3fbda36c2d3)
@@ -59,11 +59,6 @@
private bool isSequenceable = false;
///
- /// Initializes a new instance of the class.
- ///
- public LineSequencer() {}
-
- ///
/// Tests whether a is sequenced correctly.
/// s are trivially sequenced.
/// s are checked for correct sequencing.
Index: src/Common/NetTopologySuite/Operation/Predicate/SegmentIntersectionTester.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r948479c1e06982dac3087d9346d8e3fbda36c2d3
--- src/Common/NetTopologySuite/Operation/Predicate/SegmentIntersectionTester.cs (.../SegmentIntersectionTester.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/NetTopologySuite/Operation/Predicate/SegmentIntersectionTester.cs (.../SegmentIntersectionTester.cs) (revision 948479c1e06982dac3087d9346d8e3fbda36c2d3)
@@ -24,11 +24,6 @@
///
///
///
- public SegmentIntersectionTester() {}
-
- ///
- ///
- ///
///
///
///
Index: src/Common/NetTopologySuite/Operation/Relate/EdgeEndBuilder.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r948479c1e06982dac3087d9346d8e3fbda36c2d3
--- src/Common/NetTopologySuite/Operation/Relate/EdgeEndBuilder.cs (.../EdgeEndBuilder.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/NetTopologySuite/Operation/Relate/EdgeEndBuilder.cs (.../EdgeEndBuilder.cs) (revision 948479c1e06982dac3087d9346d8e3fbda36c2d3)
@@ -11,10 +11,6 @@
///
public class EdgeEndBuilder
{
- ///
- ///
- ///
- public EdgeEndBuilder() {}
///
///
Index: src/Common/NetTopologySuite/Operation/Relate/EdgeEndBundleStar.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r948479c1e06982dac3087d9346d8e3fbda36c2d3
--- src/Common/NetTopologySuite/Operation/Relate/EdgeEndBundleStar.cs (.../EdgeEndBundleStar.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/NetTopologySuite/Operation/Relate/EdgeEndBundleStar.cs (.../EdgeEndBundleStar.cs) (revision 948479c1e06982dac3087d9346d8e3fbda36c2d3)
@@ -11,10 +11,6 @@
///
public class EdgeEndBundleStar : EdgeEndStar
{
- ///
- ///
- ///
- public EdgeEndBundleStar() {}
///
/// Update the IM with the contribution for the EdgeStubs around the node.
Index: src/Common/NetTopologySuite/Operation/Relate/RelateNodeGraph.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r948479c1e06982dac3087d9346d8e3fbda36c2d3
--- src/Common/NetTopologySuite/Operation/Relate/RelateNodeGraph.cs (.../RelateNodeGraph.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/NetTopologySuite/Operation/Relate/RelateNodeGraph.cs (.../RelateNodeGraph.cs) (revision 948479c1e06982dac3087d9346d8e3fbda36c2d3)
@@ -28,11 +28,6 @@
///
///
///
- public RelateNodeGraph() {}
-
- ///
- ///
- ///
///
public IEnumerator GetNodeEnumerator()
{
Index: src/Common/NetTopologySuite/Operation/Valid/RepeatedPointTester.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r948479c1e06982dac3087d9346d8e3fbda36c2d3
--- src/Common/NetTopologySuite/Operation/Valid/RepeatedPointTester.cs (.../RepeatedPointTester.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/NetTopologySuite/Operation/Valid/RepeatedPointTester.cs (.../RepeatedPointTester.cs) (revision 948479c1e06982dac3087d9346d8e3fbda36c2d3)
@@ -10,16 +10,9 @@
///
public class RepeatedPointTester
{
- // save the repeated coord found (if any)
-
///
///
///
- public RepeatedPointTester() {}
-
- ///
- ///
- ///
public ICoordinate Coordinate { get; private set; }
///
Index: src/Common/NetTopologySuite/Planargraph/DirectedEdgeStar.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r948479c1e06982dac3087d9346d8e3fbda36c2d3
--- src/Common/NetTopologySuite/Planargraph/DirectedEdgeStar.cs (.../DirectedEdgeStar.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/NetTopologySuite/Planargraph/DirectedEdgeStar.cs (.../DirectedEdgeStar.cs) (revision 948479c1e06982dac3087d9346d8e3fbda36c2d3)
@@ -17,11 +17,6 @@
private bool sorted = false;
///
- /// Constructs a DirectedEdgeStar with no edges.
- ///
- public DirectedEdgeStar() {}
-
- ///
/// Returns the number of edges around the Node associated with this DirectedEdgeStar.
///
public int Degree
Index: src/Common/NetTopologySuite/Planargraph/GraphComponent.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r948479c1e06982dac3087d9346d8e3fbda36c2d3
--- src/Common/NetTopologySuite/Planargraph/GraphComponent.cs (.../GraphComponent.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/NetTopologySuite/Planargraph/GraphComponent.cs (.../GraphComponent.cs) (revision 948479c1e06982dac3087d9346d8e3fbda36c2d3)
@@ -27,11 +27,6 @@
protected bool isVisited = false;
///
- /// Initializes a new instance of the class.
- ///
- public GraphComponent() {}
-
- ///
/// Tests if a component has been visited during the course of a graph algorithm.
///
public bool IsVisited
Index: src/Common/NetTopologySuite/Planargraph/NodeMap.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r948479c1e06982dac3087d9346d8e3fbda36c2d3
--- src/Common/NetTopologySuite/Planargraph/NodeMap.cs (.../NodeMap.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/NetTopologySuite/Planargraph/NodeMap.cs (.../NodeMap.cs) (revision 948479c1e06982dac3087d9346d8e3fbda36c2d3)
@@ -12,11 +12,6 @@
private readonly IDictionary nodeMap = new Dictionary();
///
- /// Constructs a NodeMap without any Nodes.
- ///
- public NodeMap() {}
-
- ///
/// Returns the Nodes in this NodeMap, sorted in ascending order
/// by angle with the positive x-axis.
///
Index: src/Common/NetTopologySuite/Planargraph/PlanarGraph.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r948479c1e06982dac3087d9346d8e3fbda36c2d3
--- src/Common/NetTopologySuite/Planargraph/PlanarGraph.cs (.../PlanarGraph.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/NetTopologySuite/Planargraph/PlanarGraph.cs (.../PlanarGraph.cs) (revision 948479c1e06982dac3087d9346d8e3fbda36c2d3)
@@ -32,11 +32,6 @@
protected NodeMap nodeMap = new NodeMap();
///
- /// Constructs a PlanarGraph without any Edges, DirectedEdges, or Nodes.
- ///
- public PlanarGraph() {}
-
- ///
/// Returns the Nodes in this PlanarGraph.
///
public ICollection Nodes
Index: src/Common/NetTopologySuite/Precision/CommonBits.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r948479c1e06982dac3087d9346d8e3fbda36c2d3
--- src/Common/NetTopologySuite/Precision/CommonBits.cs (.../CommonBits.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/NetTopologySuite/Precision/CommonBits.cs (.../CommonBits.cs) (revision 948479c1e06982dac3087d9346d8e3fbda36c2d3)
@@ -20,11 +20,6 @@
///
///
///
- public CommonBits() {}
-
- ///
- ///
- ///
public double Common
{
get
Index: src/Common/NetTopologySuite/Simplify/LineSegmentIndex.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r948479c1e06982dac3087d9346d8e3fbda36c2d3
--- src/Common/NetTopologySuite/Simplify/LineSegmentIndex.cs (.../LineSegmentIndex.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/NetTopologySuite/Simplify/LineSegmentIndex.cs (.../LineSegmentIndex.cs) (revision 948479c1e06982dac3087d9346d8e3fbda36c2d3)
@@ -16,11 +16,6 @@
///
///
///
- public LineSegmentIndex() {}
-
- ///
- ///
- ///
///
public void Add(TaggedLineString line)
{
Index: src/Common/NetTopologySuite/Utilities/CoordinateCompare.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r948479c1e06982dac3087d9346d8e3fbda36c2d3
--- src/Common/NetTopologySuite/Utilities/CoordinateCompare.cs (.../CoordinateCompare.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/NetTopologySuite/Utilities/CoordinateCompare.cs (.../CoordinateCompare.cs) (revision 948479c1e06982dac3087d9346d8e3fbda36c2d3)
@@ -10,10 +10,6 @@
///
public class CoordinateCompare : IComparer
{
- ///
- /// Constructor.
- ///
- public CoordinateCompare() {}
///
/// Compares two object and returns a value indicating whether one is less than, equal to or greater
Index: src/Common/NetTopologySuite/Utilities/ReverseOrder.cs
===================================================================
diff -u -rd9cadb087dc07ab563a285513adfb9b77e8e0344 -r948479c1e06982dac3087d9346d8e3fbda36c2d3
--- src/Common/NetTopologySuite/Utilities/ReverseOrder.cs (.../ReverseOrder.cs) (revision d9cadb087dc07ab563a285513adfb9b77e8e0344)
+++ src/Common/NetTopologySuite/Utilities/ReverseOrder.cs (.../ReverseOrder.cs) (revision 948479c1e06982dac3087d9346d8e3fbda36c2d3)
@@ -7,10 +7,6 @@
///
internal class ReverseOrder : IComparer
{
- ///
- ///
- ///
- public ReverseOrder() {}
///
///