Fisheye: Tag 2d05e18d1fcde2d8d00d2434a6e560d65337d2f7 refers to a dead (removed) revision in file `src/Common/DelftTools.Controls.Swf/Charting/Tools/ChartMouseEvent.cs'. Fisheye: No comparison available. Pass `N' to diff? Index: src/Common/DelftTools.Controls.Swf/DelftTools.Controls.Swf.csproj =================================================================== diff -u -r367570aed0000b2f1bf6ed9e98385a47f4302e85 -r2d05e18d1fcde2d8d00d2434a6e560d65337d2f7 --- src/Common/DelftTools.Controls.Swf/DelftTools.Controls.Swf.csproj (.../DelftTools.Controls.Swf.csproj) (revision 367570aed0000b2f1bf6ed9e98385a47f4302e85) +++ src/Common/DelftTools.Controls.Swf/DelftTools.Controls.Swf.csproj (.../DelftTools.Controls.Swf.csproj) (revision 2d05e18d1fcde2d8d00d2434a6e560d65337d2f7) @@ -131,7 +131,6 @@ Component - Index: src/Common/DelftTools.Controls.Swf/MenuItemContextMenuStripAdapter.cs =================================================================== diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r2d05e18d1fcde2d8d00d2434a6e560d65337d2f7 --- src/Common/DelftTools.Controls.Swf/MenuItemContextMenuStripAdapter.cs (.../MenuItemContextMenuStripAdapter.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) +++ src/Common/DelftTools.Controls.Swf/MenuItemContextMenuStripAdapter.cs (.../MenuItemContextMenuStripAdapter.cs) (revision 2d05e18d1fcde2d8d00d2434a6e560d65337d2f7) @@ -49,117 +49,8 @@ #endregion - #region IMenuItem Members - - public string Name - { - get - { - return ContextMenuStrip.Name; - } - set - { - ContextMenuStrip.Name = value; - } - } - - public string Text - { - get - { - return ContextMenuStrip.Text; - } - set - { - ContextMenuStrip.Text = value; - } - } - - public string Tooltip - { - get - { - return ""; - } - set {} - } - - public string Category - { - get - { - return ""; - } - set {} - } - - public bool Enabled - { - get - { - throw new NotImplementedException("The method or operation is not implemented."); - } - set - { - throw new NotImplementedException("The method or operation is not implemented."); - } - } - - public string Shortcut - { - get - { - throw new NotImplementedException("The method or operation is not implemented."); - } - set - { - throw new NotImplementedException("The method or operation is not implemented."); - } - } - - public IList ActiveForViews - { - get - { - throw new NotImplementedException("The method or operation is not implemented."); - } - } - - public ICommand Command - { - get - { - throw new NotImplementedException("The method or operation is not implemented."); - } - set - { - throw new NotImplementedException("The method or operation is not implemented."); - } - } - - #endregion - #region IMenuItemCollection Members - public IMenuItem this[string name] - { - get - { - //ToolStripItem - //ToolStripMenuItem - var menuItem = ContextMenuStrip.Items[name]; - if (menuItem is ToolStripMenuItem) - { - return new MenuItemToolStripMenuItemAdapter((ToolStripMenuItem) menuItem); - } - return null; - } - set - { - throw new NotImplementedException("The method or operation is not implemented."); - } - } - public int IndexOf(string name) { var menuItem = ContextMenuStrip.Items[name]; @@ -170,16 +61,6 @@ return -1; } - public void InsertAfter(string name, IMenuItem item) - { - throw new NotImplementedException("The method or operation is not implemented."); - } - - public void InsertBefore(string name, IMenuItem item) - { - throw new NotImplementedException("The method or operation is not implemented."); - } - #endregion #region IList Members Index: src/Common/DelftTools.Controls.Swf/MenuItemToolStripMenuItemAdapter.cs =================================================================== diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r2d05e18d1fcde2d8d00d2434a6e560d65337d2f7 --- src/Common/DelftTools.Controls.Swf/MenuItemToolStripMenuItemAdapter.cs (.../MenuItemToolStripMenuItemAdapter.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) +++ src/Common/DelftTools.Controls.Swf/MenuItemToolStripMenuItemAdapter.cs (.../MenuItemToolStripMenuItemAdapter.cs) (revision 2d05e18d1fcde2d8d00d2434a6e560d65337d2f7) @@ -7,23 +7,9 @@ { internal class MenuItemToolStripMenuItemAdapter : IMenuItem { - private readonly ToolStripMenuItem toolStripMenuItem; - public MenuItemToolStripMenuItemAdapter(ToolStripMenuItem toolStripMenuItem) { - this.toolStripMenuItem = toolStripMenuItem; - } - public bool Visible - { - get - { - return toolStripMenuItem.Visible; - } - set - { - toolStripMenuItem.Visible = value; - } } public int Count @@ -42,92 +28,6 @@ } } - public string Name - { - get - { - return toolStripMenuItem.Name; - } - set - { - toolStripMenuItem.Name = value; - } - } - - public string Text - { - get - { - return toolStripMenuItem.Text; - } - set - { - toolStripMenuItem.Text = value; - } - } - - public string Tooltip - { - get - { - return ""; - } - set {} - } - - public string Category - { - get - { - return ""; - } - set {} - } - - public string Shortcut - { - get - { - throw new NotImplementedException(); - } - set - { - throw new NotImplementedException(); - } - } - - public bool Enabled - { - get - { - return toolStripMenuItem.Enabled; - } - set - { - toolStripMenuItem.Enabled = value; - } - } - - public IList ActiveForViews - { - get - { - throw new NotImplementedException(); - } - } - - public ICommand Command - { - get - { - throw new NotImplementedException(); - } - set - { - throw new NotImplementedException(); - } - } - public IEnumerator GetEnumerator() { throw new NotImplementedException(); @@ -178,21 +78,6 @@ throw new NotImplementedException(); } - public int IndexOf(string name) - { - throw new NotImplementedException(); - } - - public void InsertAfter(string name, IMenuItem item) - { - throw new NotImplementedException(); - } - - public void InsertBefore(string name, IMenuItem item) - { - throw new NotImplementedException(); - } - IMenuItem IList.this[int index] { get @@ -204,17 +89,5 @@ throw new NotImplementedException(); } } - - IMenuItem IMenuItemCollection.this[string name] - { - get - { - throw new NotImplementedException(); - } - set - { - throw new NotImplementedException(); - } - } } } \ No newline at end of file Index: src/Common/DelftTools.Controls/IMenuItemCollection.cs =================================================================== diff -u -r8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9 -r2d05e18d1fcde2d8d00d2434a6e560d65337d2f7 --- src/Common/DelftTools.Controls/IMenuItemCollection.cs (.../IMenuItemCollection.cs) (revision 8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9) +++ src/Common/DelftTools.Controls/IMenuItemCollection.cs (.../IMenuItemCollection.cs) (revision 2d05e18d1fcde2d8d00d2434a6e560d65337d2f7) @@ -11,9 +11,6 @@ /// TODO: remove it! public interface IMenuItemCollection : IList { - T this[string name] { get; set; } - int IndexOf(string name); - void InsertAfter(string name, T item); - void InsertBefore(string name, T item); + } } \ No newline at end of file Index: src/Common/DelftTools.Shell.Gui.Swf/TreeViewNodePresenterBaseForPluginGui.cs =================================================================== diff -u -r367570aed0000b2f1bf6ed9e98385a47f4302e85 -r2d05e18d1fcde2d8d00d2434a6e560d65337d2f7 --- src/Common/DelftTools.Shell.Gui.Swf/TreeViewNodePresenterBaseForPluginGui.cs (.../TreeViewNodePresenterBaseForPluginGui.cs) (revision 367570aed0000b2f1bf6ed9e98385a47f4302e85) +++ src/Common/DelftTools.Shell.Gui.Swf/TreeViewNodePresenterBaseForPluginGui.cs (.../TreeViewNodePresenterBaseForPluginGui.cs) (revision 2d05e18d1fcde2d8d00d2434a6e560d65337d2f7) @@ -1,6 +1,5 @@ using DelftTools.Controls; using DelftTools.Controls.Swf.TreeViewControls; -using log4net; namespace DelftTools.Shell.Gui.Swf { Index: src/Common/DelftTools.Utils/Editing/EditActionBase.cs =================================================================== diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r2d05e18d1fcde2d8d00d2434a6e560d65337d2f7 --- src/Common/DelftTools.Utils/Editing/EditActionBase.cs (.../EditActionBase.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) +++ src/Common/DelftTools.Utils/Editing/EditActionBase.cs (.../EditActionBase.cs) (revision 2d05e18d1fcde2d8d00d2434a6e560d65337d2f7) @@ -13,8 +13,6 @@ Name = name; } - public bool ExceptionWasThrownDuringDo { get; set; } - public string Name { get; set; } public virtual object Instance { get; set; } @@ -31,14 +29,6 @@ } } - public virtual bool SuppressEventBasedRestore - { - get - { - return false; - } - } - public static IEditAction Create(Type type) { Func func; @@ -58,10 +48,5 @@ } public virtual void BeforeChanges() {} - - public virtual void Restore() - { - throw new NotImplementedException("Cannot restore, unexpected call"); - } } } \ No newline at end of file Index: src/Common/NetTopologySuite/Geometries/MultiPoint.cs =================================================================== diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r2d05e18d1fcde2d8d00d2434a6e560d65337d2f7 --- src/Common/NetTopologySuite/Geometries/MultiPoint.cs (.../MultiPoint.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) +++ src/Common/NetTopologySuite/Geometries/MultiPoint.cs (.../MultiPoint.cs) (revision 2d05e18d1fcde2d8d00d2434a6e560d65337d2f7) @@ -11,12 +11,6 @@ public class MultiPoint : GeometryCollection, IMultiPoint { /// - /// Represents an empty MultiPoint. - /// - public new static readonly IMultiPoint Empty = new GeometryFactory().CreateMultiPoint(new IPoint[] - {}); - - /// /// Constructs a MultiPoint. /// /// Index: src/Common/NetTopologySuite/Geometries/MultiPolygon.cs =================================================================== diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r2d05e18d1fcde2d8d00d2434a6e560d65337d2f7 --- src/Common/NetTopologySuite/Geometries/MultiPolygon.cs (.../MultiPolygon.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) +++ src/Common/NetTopologySuite/Geometries/MultiPolygon.cs (.../MultiPolygon.cs) (revision 2d05e18d1fcde2d8d00d2434a6e560d65337d2f7) @@ -11,11 +11,6 @@ public class MultiPolygon : GeometryCollection, IMultiPolygon { /// - /// Represents an empty MultiPolygon. - /// - public new static readonly IMultiPolygon Empty = new GeometryFactory().CreateMultiPolygon(null); - - /// /// Constructs a MultiPolygon. /// /// Index: src/Common/NetTopologySuite/NetTopologySuite.csproj =================================================================== diff -u -r367570aed0000b2f1bf6ed9e98385a47f4302e85 -r2d05e18d1fcde2d8d00d2434a6e560d65337d2f7 --- src/Common/NetTopologySuite/NetTopologySuite.csproj (.../NetTopologySuite.csproj) (revision 367570aed0000b2f1bf6ed9e98385a47f4302e85) +++ src/Common/NetTopologySuite/NetTopologySuite.csproj (.../NetTopologySuite.csproj) (revision 2d05e18d1fcde2d8d00d2434a6e560d65337d2f7) @@ -302,7 +302,6 @@ - @@ -313,13 +312,11 @@ - - Fisheye: Tag 2d05e18d1fcde2d8d00d2434a6e560d65337d2f7 refers to a dead (removed) revision in file `src/Common/NetTopologySuite/Triangulate/IncrementalDelaunayTriangulator.cs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 2d05e18d1fcde2d8d00d2434a6e560d65337d2f7 refers to a dead (removed) revision in file `src/Common/NetTopologySuite/Triangulate/SplitSegment.cs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 2d05e18d1fcde2d8d00d2434a6e560d65337d2f7 refers to a dead (removed) revision in file `src/Common/NetTopologySuite/Utilities/Global.cs'. Fisheye: No comparison available. Pass `N' to diff? Index: src/DeltaShell/DeltaShell.Gui/Forms/MessageWindow/MessageWindow.cs =================================================================== diff -u -r0f70ca982229214aea971cb9d47e3a9fc7ff98e8 -r2d05e18d1fcde2d8d00d2434a6e560d65337d2f7 --- src/DeltaShell/DeltaShell.Gui/Forms/MessageWindow/MessageWindow.cs (.../MessageWindow.cs) (revision 0f70ca982229214aea971cb9d47e3a9fc7ff98e8) +++ src/DeltaShell/DeltaShell.Gui/Forms/MessageWindow/MessageWindow.cs (.../MessageWindow.cs) (revision 2d05e18d1fcde2d8d00d2434a6e560d65337d2f7) @@ -6,7 +6,6 @@ using DelftTools.Controls; using DelftTools.Shell.Gui.Forms; using DeltaShell.Gui.Properties; -using log4net; using log4net.Core; namespace DeltaShell.Gui.Forms.MessageWindow Index: src/Plugins/Wti/Wti.Data/PipingSoilProfile.cs =================================================================== diff -u -re5c186677d0ef8697eb04ea571b7c4ef8268183c -r2d05e18d1fcde2d8d00d2434a6e560d65337d2f7 --- src/Plugins/Wti/Wti.Data/PipingSoilProfile.cs (.../PipingSoilProfile.cs) (revision e5c186677d0ef8697eb04ea571b7c4ef8268183c) +++ src/Plugins/Wti/Wti.Data/PipingSoilProfile.cs (.../PipingSoilProfile.cs) (revision 2d05e18d1fcde2d8d00d2434a6e560d65337d2f7) @@ -1,5 +1,4 @@ -using System.Collections; -using System.Collections.Generic; +using System.Collections.Generic; namespace Wti.Data { Index: src/Plugins/Wti/Wti.IO/PipingSoilProfilesReader.cs =================================================================== diff -u -re5c186677d0ef8697eb04ea571b7c4ef8268183c -r2d05e18d1fcde2d8d00d2434a6e560d65337d2f7 --- src/Plugins/Wti/Wti.IO/PipingSoilProfilesReader.cs (.../PipingSoilProfilesReader.cs) (revision e5c186677d0ef8697eb04ea571b7c4ef8268183c) +++ src/Plugins/Wti/Wti.IO/PipingSoilProfilesReader.cs (.../PipingSoilProfilesReader.cs) (revision 2d05e18d1fcde2d8d00d2434a6e560d65337d2f7) @@ -3,7 +3,6 @@ using System.Data; using System.Data.SQLite; using System.IO; -using System.Linq; using System.Xml; using Wti.Data; Index: test/Common/SharpMap.Tests/Data/Providers/QuadTreeTest.cs =================================================================== diff -u -raf9c347c54e7b8965c536b1a2b5ee445688fd782 -r2d05e18d1fcde2d8d00d2434a6e560d65337d2f7 --- test/Common/SharpMap.Tests/Data/Providers/QuadTreeTest.cs (.../QuadTreeTest.cs) (revision af9c347c54e7b8965c536b1a2b5ee445688fd782) +++ test/Common/SharpMap.Tests/Data/Providers/QuadTreeTest.cs (.../QuadTreeTest.cs) (revision 2d05e18d1fcde2d8d00d2434a6e560d65337d2f7) @@ -2,7 +2,6 @@ using System.Drawing; using System.Linq; using DelftTools.TestUtils; -using DelftTools.Utils.Aop; using NUnit.Framework; using SharpMap.Data.Providers.EGIS.ShapeFileLib; Index: test/Plugins/Wti/Wti.Calculation.TestUtil/Properties/AssemblyInfo.cs =================================================================== diff -u -r48b873c6d49827d951cf1fbcb52ea815be6b9f93 -r2d05e18d1fcde2d8d00d2434a6e560d65337d2f7 --- test/Plugins/Wti/Wti.Calculation.TestUtil/Properties/AssemblyInfo.cs (.../AssemblyInfo.cs) (revision 48b873c6d49827d951cf1fbcb52ea815be6b9f93) +++ test/Plugins/Wti/Wti.Calculation.TestUtil/Properties/AssemblyInfo.cs (.../AssemblyInfo.cs) (revision 2d05e18d1fcde2d8d00d2434a6e560d65337d2f7) @@ -1,5 +1,4 @@ using System.Reflection; -using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following Index: test/Plugins/Wti/Wti.Data.Test/PipingDataTest.cs =================================================================== diff -u -r17ff1f55ba16c96a71a4476845340e38a9fce99f -r2d05e18d1fcde2d8d00d2434a6e560d65337d2f7 --- test/Plugins/Wti/Wti.Data.Test/PipingDataTest.cs (.../PipingDataTest.cs) (revision 17ff1f55ba16c96a71a4476845340e38a9fce99f) +++ test/Plugins/Wti/Wti.Data.Test/PipingDataTest.cs (.../PipingDataTest.cs) (revision 2d05e18d1fcde2d8d00d2434a6e560d65337d2f7) @@ -1,5 +1,4 @@ -using System; -using DelftTools.Shell.Core; +using DelftTools.Shell.Core; using NUnit.Framework; using Rhino.Mocks; Index: test/Plugins/Wti/Wti.Forms.Test/NodePresenters/PipingSoilProfileCollectionNodePresenterTest.cs =================================================================== diff -u -re5c186677d0ef8697eb04ea571b7c4ef8268183c -r2d05e18d1fcde2d8d00d2434a6e560d65337d2f7 --- test/Plugins/Wti/Wti.Forms.Test/NodePresenters/PipingSoilProfileCollectionNodePresenterTest.cs (.../PipingSoilProfileCollectionNodePresenterTest.cs) (revision e5c186677d0ef8697eb04ea571b7c4ef8268183c) +++ test/Plugins/Wti/Wti.Forms.Test/NodePresenters/PipingSoilProfileCollectionNodePresenterTest.cs (.../PipingSoilProfileCollectionNodePresenterTest.cs) (revision 2d05e18d1fcde2d8d00d2434a6e560d65337d2f7) @@ -1,5 +1,4 @@ using System; -using System.Collections; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; Index: test/Plugins/Wti/Wti.Forms.Test/NodePresenters/PipingSurfaceLineCollectionNodePresenterTest.cs =================================================================== diff -u -rab8c3b732c3aaadc8e55be98e132bdaf41110169 -r2d05e18d1fcde2d8d00d2434a6e560d65337d2f7 --- test/Plugins/Wti/Wti.Forms.Test/NodePresenters/PipingSurfaceLineCollectionNodePresenterTest.cs (.../PipingSurfaceLineCollectionNodePresenterTest.cs) (revision ab8c3b732c3aaadc8e55be98e132bdaf41110169) +++ test/Plugins/Wti/Wti.Forms.Test/NodePresenters/PipingSurfaceLineCollectionNodePresenterTest.cs (.../PipingSurfaceLineCollectionNodePresenterTest.cs) (revision 2d05e18d1fcde2d8d00d2434a6e560d65337d2f7) @@ -3,8 +3,6 @@ using System.ComponentModel; using System.Drawing; using System.Linq; -using System.Windows.Forms; - using DelftTools.Controls; using DelftTools.Controls.Swf; using DelftTools.Utils.Collections;