Index: src/Common/DelftTools.Controls.Swf/ExceptionDialog.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r264b81f8e2b339ebadb6937d90d0ef909fb86af1
--- src/Common/DelftTools.Controls.Swf/ExceptionDialog.cs (.../ExceptionDialog.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/DelftTools.Controls.Swf/ExceptionDialog.cs (.../ExceptionDialog.cs) (revision 264b81f8e2b339ebadb6937d90d0ef909fb86af1)
@@ -20,12 +20,6 @@
/// Initializes a new instance of the class.
///
/// The exception.
- public ExceptionDialog(Exception exception) : this(exception, "") {}
-
- ///
- /// Initializes a new instance of the class.
- ///
- /// The exception.
/// The text to be added after exception.
public ExceptionDialog(Exception exception, string text)
{
Index: src/Common/DelftTools.Shell.Gui.Swf/TreeFolder.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r264b81f8e2b339ebadb6937d90d0ef909fb86af1
--- src/Common/DelftTools.Shell.Gui.Swf/TreeFolder.cs (.../TreeFolder.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/DelftTools.Shell.Gui.Swf/TreeFolder.cs (.../TreeFolder.cs) (revision 264b81f8e2b339ebadb6937d90d0ef909fb86af1)
@@ -25,8 +25,6 @@
private static readonly Bitmap outputFolderImage = Resources.folder_output;
private static readonly Bitmap folderImage = Resources.Folder;
- public TreeFolder(IEnumerable childItems, string text, FolderImageType imageType) : this(null, childItems, text, imageType) {}
-
///
/// TODO: refactor childItems to be Func[IEnumerable] since it may change after property/collection change
///
Index: src/Common/DelftTools.Utils/Collections/Generic/EnumerableList.cs
===================================================================
diff -u -rb2f8d42a10dc057d13f9004c2361e2c90f8b15a3 -r264b81f8e2b339ebadb6937d90d0ef909fb86af1
--- src/Common/DelftTools.Utils/Collections/Generic/EnumerableList.cs (.../EnumerableList.cs) (revision b2f8d42a10dc057d13f9004c2361e2c90f8b15a3)
+++ src/Common/DelftTools.Utils/Collections/Generic/EnumerableList.cs (.../EnumerableList.cs) (revision 264b81f8e2b339ebadb6937d90d0ef909fb86af1)
@@ -29,12 +29,6 @@
Dirty = true;
}
- public EnumerableList(IEnumerable enumerable)
- {
- Dirty = true;
- Enumerable = enumerable;
- }
-
public T this[int index]
{
get
Index: src/Common/DelftTools.Utils/Threading/ThreadsafeBindingList.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r264b81f8e2b339ebadb6937d90d0ef909fb86af1
--- src/Common/DelftTools.Utils/Threading/ThreadsafeBindingList.cs (.../ThreadsafeBindingList.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/DelftTools.Utils/Threading/ThreadsafeBindingList.cs (.../ThreadsafeBindingList.cs) (revision 264b81f8e2b339ebadb6937d90d0ef909fb86af1)
@@ -1,4 +1,3 @@
-using System.Collections.Generic;
using System.ComponentModel;
using System.Threading;
@@ -31,17 +30,6 @@
synchronizationContext = context;
}
- public ThreadsafeBindingList(SynchronizationContext context, IList list)
- : base(list)
- {
- if (context == null)
- {
- context = new SynchronizationContext();
- }
-
- synchronizationContext = context;
- }
-
protected override void OnAddingNew(AddingNewEventArgs e)
{
synchronizationContext.Send(delegate { BaseAddingNew(e); }, null);
Index: src/Common/DelftTools.Utils/Tuple.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r264b81f8e2b339ebadb6937d90d0ef909fb86af1
--- src/Common/DelftTools.Utils/Tuple.cs (.../Tuple.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/DelftTools.Utils/Tuple.cs (.../Tuple.cs) (revision 264b81f8e2b339ebadb6937d90d0ef909fb86af1)
@@ -12,8 +12,6 @@
///
public class Tuple
{
- public Tuple() {}
-
public Tuple(T1 first, T2 second)
{
if (first == null)
Index: src/Common/DelftTools.Utils/Xml/Serialization/DictionarySerializer.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r264b81f8e2b339ebadb6937d90d0ef909fb86af1
--- src/Common/DelftTools.Utils/Xml/Serialization/DictionarySerializer.cs (.../DictionarySerializer.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/DelftTools.Utils/Xml/Serialization/DictionarySerializer.cs (.../DictionarySerializer.cs) (revision 264b81f8e2b339ebadb6937d90d0ef909fb86af1)
@@ -16,13 +16,8 @@
{
private const string NS = "http://www.develop.com/xml/serialization";
- public IDictionary dictionary;
+ public readonly IDictionary dictionary;
- public DictionarySerializer()
- {
- dictionary = new Hashtable();
- }
-
public DictionarySerializer(IDictionary dictionary)
{
this.dictionary = dictionary;
Index: src/Common/NetTopologySuite/Geometries/CoordinateList.cs
===================================================================
diff -u -r2e9215aaf35b38491b7f5c1c0dad83077708852c -r264b81f8e2b339ebadb6937d90d0ef909fb86af1
--- src/Common/NetTopologySuite/Geometries/CoordinateList.cs (.../CoordinateList.cs) (revision 2e9215aaf35b38491b7f5c1c0dad83077708852c)
+++ src/Common/NetTopologySuite/Geometries/CoordinateList.cs (.../CoordinateList.cs) (revision 264b81f8e2b339ebadb6937d90d0ef909fb86af1)
@@ -26,27 +26,6 @@
}
///
- /// Constructs a new list from a collection of Coordinates,
- /// allows repeated points.
- ///
- /// Collection of coordinates to load into the list.
- public CoordinateList(List coordList)
- {
- AddAll(coordList, true);
- }
-
- ///
- /// Constructs a new list from a collection of Coordinates,
- /// allowing caller to specify if repeated points are to be removed.
- ///
- /// Collection of coordinates to load into the list.
- /// If false, repeated points are removed.
- public CoordinateList(List coordList, bool allowRepeated)
- {
- AddAll(coordList, allowRepeated);
- }
-
- ///
/// Constructs a new list from an array of Coordinates,
/// allowing caller to specify if repeated points are to be removed.
///
Index: src/Common/NetTopologySuite/Geometries/MultiPolygon.cs
===================================================================
diff -u -r2d05e18d1fcde2d8d00d2434a6e560d65337d2f7 -r264b81f8e2b339ebadb6937d90d0ef909fb86af1
--- src/Common/NetTopologySuite/Geometries/MultiPolygon.cs (.../MultiPolygon.cs) (revision 2d05e18d1fcde2d8d00d2434a6e560d65337d2f7)
+++ src/Common/NetTopologySuite/Geometries/MultiPolygon.cs (.../MultiPolygon.cs) (revision 264b81f8e2b339ebadb6937d90d0ef909fb86af1)
@@ -21,23 +21,6 @@
/// OpenGIS Simple Features
/// Specification for SQL.
///
- ///
- /// For create this is used a standard
- /// with == .
- ///
- public MultiPolygon(IPolygon[] polygons) : this(polygons, DefaultFactory) {}
-
- ///
- /// Constructs a MultiPolygon.
- ///
- ///
- /// The Polygons for this MultiPolygon
- /// , or null or an empty array to create the empty point.
- /// Elements may be empty Polygons, but not null
- /// s. The polygons must conform to the assertions specified in the
- /// OpenGIS Simple Features
- /// Specification for SQL.
- ///
///
public MultiPolygon(IPolygon[] polygons, IGeometryFactory factory) : base(polygons, factory) {}
Index: src/Common/NetTopologySuite/IO/BEBinaryWriter.cs
===================================================================
diff -u -r2e9215aaf35b38491b7f5c1c0dad83077708852c -r264b81f8e2b339ebadb6937d90d0ef909fb86af1
--- src/Common/NetTopologySuite/IO/BEBinaryWriter.cs (.../BEBinaryWriter.cs) (revision 2e9215aaf35b38491b7f5c1c0dad83077708852c)
+++ src/Common/NetTopologySuite/IO/BEBinaryWriter.cs (.../BEBinaryWriter.cs) (revision 264b81f8e2b339ebadb6937d90d0ef909fb86af1)
@@ -21,11 +21,6 @@
///
/// Initializes a new instance of the class.
///
- public BEBinaryWriter() {}
-
- ///
- /// Initializes a new instance of the class.
- ///
/// The supplied stream.
/// output is null.
///
Index: src/Common/NetTopologySuite/IO/GeoTools/BigEndianBinaryReader.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r264b81f8e2b339ebadb6937d90d0ef909fb86af1
--- src/Common/NetTopologySuite/IO/GeoTools/BigEndianBinaryReader.cs (.../BigEndianBinaryReader.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/NetTopologySuite/IO/GeoTools/BigEndianBinaryReader.cs (.../BigEndianBinaryReader.cs) (revision 264b81f8e2b339ebadb6937d90d0ef909fb86af1)
@@ -22,14 +22,6 @@
public BigEndianBinaryReader(Stream stream) : base(stream) {}
///
- /// Initializes a new instance of the BigEndianBinaryReader class
- /// based on the supplied stream and a specific character encoding.
- ///
- ///
- ///
- public BigEndianBinaryReader(Stream input, Encoding encoding) : base(input, encoding) {}
-
- ///
/// Reads a 4-byte signed integer using the big-endian layout
/// from the current stream and advances the current position of the stream by four bytes.
///
Index: src/Common/NetTopologySuite/IO/ParseException.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r264b81f8e2b339ebadb6937d90d0ef909fb86af1
--- src/Common/NetTopologySuite/IO/ParseException.cs (.../ParseException.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/NetTopologySuite/IO/ParseException.cs (.../ParseException.cs) (revision 264b81f8e2b339ebadb6937d90d0ef909fb86af1)
@@ -12,12 +12,5 @@
///
/// A description of this ParseException.
public ParseException(String message) : base(message) {}
-
- ///
- /// Creates a ParseException with es detail message.
- ///
- /// An exception that occurred while a WKTReader was
- /// parsing a Well-known Text string.
- public ParseException(Exception e) : this(e.ToString()) {}
}
}
\ No newline at end of file
Index: src/Common/NetTopologySuite/NetTopologySuite.csproj
===================================================================
diff -u -r92b9d3266a1fa2b6547b7d07c2fff8a1bc87434e -r264b81f8e2b339ebadb6937d90d0ef909fb86af1
--- src/Common/NetTopologySuite/NetTopologySuite.csproj (.../NetTopologySuite.csproj) (revision 92b9d3266a1fa2b6547b7d07c2fff8a1bc87434e)
+++ src/Common/NetTopologySuite/NetTopologySuite.csproj (.../NetTopologySuite.csproj) (revision 264b81f8e2b339ebadb6937d90d0ef909fb86af1)
@@ -307,7 +307,6 @@
-
Index: src/Common/NetTopologySuite/Operation/Overlay/Snap/LineStringSnapper.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r264b81f8e2b339ebadb6937d90d0ef909fb86af1
--- src/Common/NetTopologySuite/Operation/Overlay/Snap/LineStringSnapper.cs (.../LineStringSnapper.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/NetTopologySuite/Operation/Overlay/Snap/LineStringSnapper.cs (.../LineStringSnapper.cs) (revision 264b81f8e2b339ebadb6937d90d0ef909fb86af1)
@@ -17,15 +17,6 @@
private readonly bool isClosed = false;
///
- /// Creates a new snapper using the points in the given {@link LineString}
- /// as target snap points.
- ///
- ///
- ///
- public LineStringSnapper(ILineString line, double snapTolerance) :
- this(line.Coordinates, snapTolerance) {}
-
- ///
/// Creates a new snapper using the given points
/// as target snap points.
///
Index: src/Common/NetTopologySuite/Planargraph/Edge.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r264b81f8e2b339ebadb6937d90d0ef909fb86af1
--- src/Common/NetTopologySuite/Planargraph/Edge.cs (.../Edge.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/NetTopologySuite/Planargraph/Edge.cs (.../Edge.cs) (revision 264b81f8e2b339ebadb6937d90d0ef909fb86af1)
@@ -15,24 +15,6 @@
protected DirectedEdge[] dirEdge;
///
- /// Constructs an Edge whose DirectedEdges are not yet set. Be sure to call
- /// SetDirectedEdges(DirectedEdge, DirectedEdge).
- ///
- public Edge() {}
-
- ///
- /// Constructs an Edge initialized with the given DirectedEdges, and for each
- /// DirectedEdge: sets the Edge, sets the symmetric DirectedEdge, and adds
- /// this Edge to its from-Node.
- ///
- ///
- ///
- public Edge(DirectedEdge de0, DirectedEdge de1)
- {
- SetDirectedEdges(de0, de1);
- }
-
- ///
/// Tests whether this component has been removed from its containing graph.
///
///
Fisheye: Tag 264b81f8e2b339ebadb6937d90d0ef909fb86af1 refers to a dead (removed) revision in file `src/Common/NetTopologySuite/Utilities/RToolsUtil/BufferedTextReader.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Index: src/Common/SharpMap.UI/Tools/Decorations/NorthArrowTool.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r264b81f8e2b339ebadb6937d90d0ef909fb86af1
--- src/Common/SharpMap.UI/Tools/Decorations/NorthArrowTool.cs (.../NorthArrowTool.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/SharpMap.UI/Tools/Decorations/NorthArrowTool.cs (.../NorthArrowTool.cs) (revision 264b81f8e2b339ebadb6937d90d0ef909fb86af1)
@@ -17,19 +17,6 @@
private readonly bool ImageIsVectorBased = false;
///
- /// Creates the north arrow layout component showing a specified bitmap.
- ///
- /// The bitmap image to show
- /// The map control it operates on
- public NorthArrowTool(Bitmap northArrowBitmap)
- {
- this.northArrowBitmap = northArrowBitmap;
- // The size of this component is defined by the size of the bitmap
- size = northArrowBitmap.Size;
- Name = "NorthArrow";
- }
-
- ///
/// Creates the north arrow layout component showing default bitmap.
///
/// The bitmap image to show
Index: src/Common/SharpMap/Rendering/RenderExceptions.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r264b81f8e2b339ebadb6937d90d0ef909fb86af1
--- src/Common/SharpMap/Rendering/RenderExceptions.cs (.../RenderExceptions.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/SharpMap/Rendering/RenderExceptions.cs (.../RenderExceptions.cs) (revision 264b81f8e2b339ebadb6937d90d0ef909fb86af1)
@@ -27,18 +27,7 @@
///
/// Exception thrown when layer rendering has failed
///
- public RenderException() {}
-
- ///
- /// Exception thrown when layer rendering has failed
- ///
///
- public RenderException(string message) : base(message) {}
-
- ///
- /// Exception thrown when layer rendering has failed
- ///
- ///
///
public RenderException(string message, Exception inner) : base(message, inner) {}
}