diff --git a/Terminal.Gui/Drivers/V2/ConsoleDriverFacade.cs b/Terminal.Gui/Drivers/V2/ConsoleDriverFacade.cs index 5f00bd18d..c89c63965 100644 --- a/Terminal.Gui/Drivers/V2/ConsoleDriverFacade.cs +++ b/Terminal.Gui/Drivers/V2/ConsoleDriverFacade.cs @@ -406,4 +406,4 @@ internal class ConsoleDriverFacade : IConsoleDriver, IConsoleDriverFacade { // No need we will always draw when dirty } -} \ No newline at end of file +} diff --git a/Terminal.Gui/Drivers/V2/IConsoleOutput.cs b/Terminal.Gui/Drivers/V2/IConsoleOutput.cs index 2619c09a3..aa35c06ee 100644 --- a/Terminal.Gui/Drivers/V2/IConsoleOutput.cs +++ b/Terminal.Gui/Drivers/V2/IConsoleOutput.cs @@ -39,4 +39,4 @@ public interface IConsoleOutput : IDisposable /// /// void SetCursorPosition (int col, int row); -} \ No newline at end of file +} diff --git a/Terminal.Gui/Drivers/V2/MainLoopCoordinator.cs b/Terminal.Gui/Drivers/V2/MainLoopCoordinator.cs index 4ad429cce..a2cc34c49 100644 --- a/Terminal.Gui/Drivers/V2/MainLoopCoordinator.cs +++ b/Terminal.Gui/Drivers/V2/MainLoopCoordinator.cs @@ -192,4 +192,4 @@ internal class MainLoopCoordinator : IMainLoopCoordinator // Wait for input infinite loop to exit _inputTask.Wait (); } -} \ No newline at end of file +} diff --git a/Terminal.Gui/Drivers/V2/NetOutput.cs b/Terminal.Gui/Drivers/V2/NetOutput.cs index 427a6308b..32ae49764 100644 --- a/Terminal.Gui/Drivers/V2/NetOutput.cs +++ b/Terminal.Gui/Drivers/V2/NetOutput.cs @@ -277,4 +277,4 @@ public class NetOutput : IConsoleOutput { Console.Out.Write (visibility == CursorVisibility.Default ? EscSeqUtils.CSI_ShowCursor : EscSeqUtils.CSI_HideCursor); } -} \ No newline at end of file +} diff --git a/Terminal.Gui/Drivers/V2/OutputBuffer.cs b/Terminal.Gui/Drivers/V2/OutputBuffer.cs index 2520ab288..fa44d5630 100644 --- a/Terminal.Gui/Drivers/V2/OutputBuffer.cs +++ b/Terminal.Gui/Drivers/V2/OutputBuffer.cs @@ -447,4 +447,4 @@ public class OutputBuffer : IOutputBuffer Col = col; Row = row; } -} \ No newline at end of file +} diff --git a/Terminal.Gui/Drivers/V2/WindowSizeMonitor.cs b/Terminal.Gui/Drivers/V2/WindowSizeMonitor.cs index ee9dcb1aa..ee3841c6e 100644 --- a/Terminal.Gui/Drivers/V2/WindowSizeMonitor.cs +++ b/Terminal.Gui/Drivers/V2/WindowSizeMonitor.cs @@ -39,4 +39,4 @@ internal class WindowSizeMonitor : IWindowSizeMonitor return false; } -} \ No newline at end of file +} diff --git a/Terminal.Gui/Drivers/V2/WindowsInput.cs b/Terminal.Gui/Drivers/V2/WindowsInput.cs index ca34e4d78..11d01cb60 100644 --- a/Terminal.Gui/Drivers/V2/WindowsInput.cs +++ b/Terminal.Gui/Drivers/V2/WindowsInput.cs @@ -125,4 +125,4 @@ internal class WindowsInput : ConsoleInput, IWindows SetConsoleMode (_inputHandle, _originalConsoleMode); } -} \ No newline at end of file +} diff --git a/Terminal.Gui/Drivers/V2/WindowsInputProcessor.cs b/Terminal.Gui/Drivers/V2/WindowsInputProcessor.cs index 79b1985ad..cdd2e1dfe 100644 --- a/Terminal.Gui/Drivers/V2/WindowsInputProcessor.cs +++ b/Terminal.Gui/Drivers/V2/WindowsInputProcessor.cs @@ -186,4 +186,4 @@ internal class WindowsInputProcessor : InputProcessor return current; } -} \ No newline at end of file +} diff --git a/Terminal.Gui/Drivers/V2/WindowsOutput.cs b/Terminal.Gui/Drivers/V2/WindowsOutput.cs index 3ed662a89..fdc2abde8 100644 --- a/Terminal.Gui/Drivers/V2/WindowsOutput.cs +++ b/Terminal.Gui/Drivers/V2/WindowsOutput.cs @@ -381,4 +381,4 @@ internal partial class WindowsOutput : IConsoleOutput _isDisposed = true; } -} \ No newline at end of file +} diff --git a/Tests/TerminalGuiFluentTesting/FakeOutput.cs b/Tests/TerminalGuiFluentTesting/FakeOutput.cs index 5b475b025..1b73d9ba1 100644 --- a/Tests/TerminalGuiFluentTesting/FakeOutput.cs +++ b/Tests/TerminalGuiFluentTesting/FakeOutput.cs @@ -19,9 +19,6 @@ internal class FakeOutput : IConsoleOutput /// public Size GetWindowSize () { return Size; } - /// - public Size SetWindowSize (Size newSize) { return newSize; } - /// public void SetCursorVisibility (CursorVisibility visibility) { }