Index: src/Common/DelftTools.Controls.Swf/CollapsibleSplitter.cs =================================================================== diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r3e905c4e56df168cc8fe333589e2d5420a600f04 --- src/Common/DelftTools.Controls.Swf/CollapsibleSplitter.cs (.../CollapsibleSplitter.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) +++ src/Common/DelftTools.Controls.Swf/CollapsibleSplitter.cs (.../CollapsibleSplitter.cs) (revision 3e905c4e56df168cc8fe333589e2d5420a600f04) @@ -956,8 +956,6 @@ /// public class CollapsibleSplitterDesigner : ControlDesigner { - public CollapsibleSplitterDesigner() {} - protected override void PreFilterProperties(IDictionary properties) { properties.Remove("IsCollapsed"); Index: src/Common/DelftTools.Controls.Swf/Table/TableView.cs =================================================================== diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r3e905c4e56df168cc8fe333589e2d5420a600f04 --- src/Common/DelftTools.Controls.Swf/Table/TableView.cs (.../TableView.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) +++ src/Common/DelftTools.Controls.Swf/Table/TableView.cs (.../TableView.cs) (revision 3e905c4e56df168cc8fe333589e2d5420a600f04) @@ -1840,13 +1840,8 @@ }); } - public ITableViewColumn AddColumn(string dataSourcePropertyName, string columnCaption) + public void AddColumn(string dataSourcePropertyName, string columnCaption, bool readOnly = false, int width = 100, Type columnType = null, string displayFormat = null) { - return AddColumn(dataSourcePropertyName, columnCaption, false, 100); - } - - public ITableViewColumn AddColumn(string dataSourcePropertyName, string columnCaption, bool readOnly, int width, Type columnType = null, string displayFormat = null) - { var dxColumn = dxGridView.Columns.AddField(dataSourcePropertyName); dxColumn.Caption = columnCaption; dxColumn.VisibleIndex = dxGridView.Columns.Count - 1; @@ -1863,8 +1858,6 @@ Columns.Add(column); UpdateColumnsFormatting(); - - return column; } /// @@ -1874,8 +1867,7 @@ /// Type of the data the column is going to display /// Index of the column /// Editor to use for editing the values of this column - /// Last column index - public int AddUnboundColumn(string columnName, Type columnType, int index = -1, ITypeEditor editor = null) + public void AddUnboundColumn(string columnName, Type columnType, int index = -1, ITypeEditor editor = null) { var unbColumn = dxGridView.Columns.AddField(columnName); var column = new TableViewColumn(dxGridView, dxGridControl, unbColumn, this, true); @@ -1919,7 +1911,6 @@ dxGridView.CustomUnboundColumnData -= DxGridViewCustomUnboundColumnData; dxGridView.CustomUnboundColumnData += DxGridViewCustomUnboundColumnData; - return dxGridView.Columns.Count - 1; } public string GetCellDisplayText(int rowIndex, int absoluteColumnIndex) Index: src/Common/DelftTools.Shell.Gui/Forms/IMainWindow.cs =================================================================== diff -u -rb301f31bca6957a9326b4b0ab912bd7b5da60195 -r3e905c4e56df168cc8fe333589e2d5420a600f04 --- src/Common/DelftTools.Shell.Gui/Forms/IMainWindow.cs (.../IMainWindow.cs) (revision b301f31bca6957a9326b4b0ab912bd7b5da60195) +++ src/Common/DelftTools.Shell.Gui/Forms/IMainWindow.cs (.../IMainWindow.cs) (revision 3e905c4e56df168cc8fe333589e2d5420a600f04) @@ -1,5 +1,3 @@ -using System.Drawing; - namespace DelftTools.Shell.Gui.Forms { /// Index: src/Common/DelftTools.Utils/Serialization/SerializationWriter.cs =================================================================== diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r3e905c4e56df168cc8fe333589e2d5420a600f04 --- src/Common/DelftTools.Utils/Serialization/SerializationWriter.cs (.../SerializationWriter.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) +++ src/Common/DelftTools.Utils/Serialization/SerializationWriter.cs (.../SerializationWriter.cs) (revision 3e905c4e56df168cc8fe333589e2d5420a600f04) @@ -2416,8 +2416,7 @@ /// Called automatically by ToArray() otherwise must be called /// manually when serialization is complete. /// - /// The total length of serialized data or 0 if the stream is not seekable - public int UpdateHeader() + public void UpdateHeader() { var result = BaseStream.CanSeek ? (int) BaseStream.Position - startPosition : 0; @@ -2434,8 +2433,6 @@ BaseStream.Position = currentPosition; } - - return result; } /// Index: src/DeltaShell/DeltaShell.Core/DeltaShellUserDataFolderConverter.cs =================================================================== diff -u -r2899024e0e552929460b0eb71dbf86852dd40f58 -r3e905c4e56df168cc8fe333589e2d5420a600f04 --- src/DeltaShell/DeltaShell.Core/DeltaShellUserDataFolderConverter.cs (.../DeltaShellUserDataFolderConverter.cs) (revision 2899024e0e552929460b0eb71dbf86852dd40f58) +++ src/DeltaShell/DeltaShell.Core/DeltaShellUserDataFolderConverter.cs (.../DeltaShellUserDataFolderConverter.cs) (revision 3e905c4e56df168cc8fe333589e2d5420a600f04) @@ -1,7 +1,5 @@ using System; -using System.Configuration; using System.IO; -using System.Linq; using DelftTools.Utils; using log4net.Util; Index: src/DeltaShell/DeltaShell.Core/ProjectRepositoryFactory.cs =================================================================== diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r3e905c4e56df168cc8fe333589e2d5420a600f04 --- src/DeltaShell/DeltaShell.Core/ProjectRepositoryFactory.cs (.../ProjectRepositoryFactory.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) +++ src/DeltaShell/DeltaShell.Core/ProjectRepositoryFactory.cs (.../ProjectRepositoryFactory.cs) (revision 3e905c4e56df168cc8fe333589e2d5420a600f04) @@ -8,8 +8,6 @@ /// public class ProjectRepositoryFactory : IProjectRepositoryFactory where T : IProjectRepository, new() { - public ProjectRepositoryFactory() {} - public string[] PluginNames { get; set; } public string FileFormatVersion { get; set; } Index: src/DeltaShell/DeltaShell.Gui/DeltaShellGui.cs =================================================================== diff -u -rb301f31bca6957a9326b4b0ab912bd7b5da60195 -r3e905c4e56df168cc8fe333589e2d5420a600f04 --- src/DeltaShell/DeltaShell.Gui/DeltaShellGui.cs (.../DeltaShellGui.cs) (revision b301f31bca6957a9326b4b0ab912bd7b5da60195) +++ src/DeltaShell/DeltaShell.Gui/DeltaShellGui.cs (.../DeltaShellGui.cs) (revision 3e905c4e56df168cc8fe333589e2d5420a600f04) @@ -5,8 +5,6 @@ using System.ComponentModel; using System.Configuration; using System.Diagnostics; -using System.Drawing; -using System.IO; using System.Linq; using System.Reflection; using System.Resources; Index: src/DeltaShell/DeltaShell.Gui/Forms/MessageWindow/MessageWindowLogAppender.cs =================================================================== diff -u -rf342f8ce94351f4265931eb1998d0f94c3ae4e06 -r3e905c4e56df168cc8fe333589e2d5420a600f04 --- src/DeltaShell/DeltaShell.Gui/Forms/MessageWindow/MessageWindowLogAppender.cs (.../MessageWindowLogAppender.cs) (revision f342f8ce94351f4265931eb1998d0f94c3ae4e06) +++ src/DeltaShell/DeltaShell.Gui/Forms/MessageWindow/MessageWindowLogAppender.cs (.../MessageWindowLogAppender.cs) (revision 3e905c4e56df168cc8fe333589e2d5420a600f04) @@ -21,8 +21,6 @@ private static bool enabled; - public MessageWindowLogAppender() {} - public static IMessageWindow MessageWindow { get; set; } /// Index: src/DeltaShell/DeltaShell.Gui/Forms/SplashScreen.xaml.cs =================================================================== diff -u -r841d3efd31f92b5fb792bbd99c153dfeb0627458 -r3e905c4e56df168cc8fe333589e2d5420a600f04 --- src/DeltaShell/DeltaShell.Gui/Forms/SplashScreen.xaml.cs (.../SplashScreen.xaml.cs) (revision 841d3efd31f92b5fb792bbd99c153dfeb0627458) +++ src/DeltaShell/DeltaShell.Gui/Forms/SplashScreen.xaml.cs (.../SplashScreen.xaml.cs) (revision 3e905c4e56df168cc8fe333589e2d5420a600f04) @@ -6,7 +6,6 @@ using System.Windows.Threading; using DelftTools.Shell.Core; using DeltaShell.Core; -using DeltaShell.Gui.Forms.MessageWindow; using log4net; namespace DeltaShell.Gui.Forms Index: src/Plugins/Wti/Wti.Calculation/Piping/PipingCalculation.cs =================================================================== diff -u -r325410362b50750d3c291d19c1526799c9b1c583 -r3e905c4e56df168cc8fe333589e2d5420a600f04 --- src/Plugins/Wti/Wti.Calculation/Piping/PipingCalculation.cs (.../PipingCalculation.cs) (revision 325410362b50750d3c291d19c1526799c9b1c583) +++ src/Plugins/Wti/Wti.Calculation/Piping/PipingCalculation.cs (.../PipingCalculation.cs) (revision 3e905c4e56df168cc8fe333589e2d5420a600f04) @@ -1,5 +1,4 @@ using System.Collections.Generic; -using System.Collections.ObjectModel; using System.Linq; using Deltares.WTIPiping; Index: src/Plugins/Wti/Wti.Service/Properties/AssemblyInfo.cs =================================================================== diff -u -rcf31268a74ee4557e6ef9ccdcde7e5c48540ab8b -r3e905c4e56df168cc8fe333589e2d5420a600f04 --- src/Plugins/Wti/Wti.Service/Properties/AssemblyInfo.cs (.../AssemblyInfo.cs) (revision cf31268a74ee4557e6ef9ccdcde7e5c48540ab8b) +++ src/Plugins/Wti/Wti.Service/Properties/AssemblyInfo.cs (.../AssemblyInfo.cs) (revision 3e905c4e56df168cc8fe333589e2d5420a600f04) @@ -1,5 +1,4 @@ using System.Reflection; -using System.Runtime.CompilerServices; using System.Runtime.InteropServices; [assembly: AssemblyTitle("Wti.Service")] Index: src/documentation/UML/Properties/AssemblyInfo.cs =================================================================== diff -u -r87d7afe35e3e56ccf165e6b5b7cc4428b0dbfe8c -r3e905c4e56df168cc8fe333589e2d5420a600f04 --- src/documentation/UML/Properties/AssemblyInfo.cs (.../AssemblyInfo.cs) (revision 87d7afe35e3e56ccf165e6b5b7cc4428b0dbfe8c) +++ src/documentation/UML/Properties/AssemblyInfo.cs (.../AssemblyInfo.cs) (revision 3e905c4e56df168cc8fe333589e2d5420a600f04) @@ -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/Common/DelftTools.TestUtils/TestReferenceHelper/TestReferenceHelper.cs =================================================================== diff -u -r20088e1db819ebac9cc8a6bc68f5875f24c076f2 -r3e905c4e56df168cc8fe333589e2d5420a600f04 --- test/Common/DelftTools.TestUtils/TestReferenceHelper/TestReferenceHelper.cs (.../TestReferenceHelper.cs) (revision 20088e1db819ebac9cc8a6bc68f5875f24c076f2) +++ test/Common/DelftTools.TestUtils/TestReferenceHelper/TestReferenceHelper.cs (.../TestReferenceHelper.cs) (revision 3e905c4e56df168cc8fe333589e2d5420a600f04) @@ -6,7 +6,6 @@ using System.Runtime.CompilerServices; using DelftTools.Utils.Aop; using GeoAPI.Geometries; -using NUnit.Framework; namespace DelftTools.TestUtils.TestReferenceHelper { Index: test/Plugins/Wti/Wti.Forms.Test/NodePresenters/PipingDataNodePresenterTest.cs =================================================================== diff -u -r325410362b50750d3c291d19c1526799c9b1c583 -r3e905c4e56df168cc8fe333589e2d5420a600f04 --- test/Plugins/Wti/Wti.Forms.Test/NodePresenters/PipingDataNodePresenterTest.cs (.../PipingDataNodePresenterTest.cs) (revision 325410362b50750d3c291d19c1526799c9b1c583) +++ test/Plugins/Wti/Wti.Forms.Test/NodePresenters/PipingDataNodePresenterTest.cs (.../PipingDataNodePresenterTest.cs) (revision 3e905c4e56df168cc8fe333589e2d5420a600f04) @@ -1,7 +1,6 @@ using System.ComponentModel; using DelftTools.Controls; using DelftTools.Controls.Swf; -using DelftTools.Shell.Core; using DelftTools.Utils.Collections; using NUnit.Framework; using Rhino.Mocks;