Skip to content

Commit b5c00a3

Browse files
committed
Newline Lints
1 parent 62803c4 commit b5c00a3

File tree

4 files changed

+0
-4
lines changed

4 files changed

+0
-4
lines changed

test/PowerShellEditorServices.Test.E2E/DebugAdapterProtocolMessageTests.cs

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020

2121
namespace PowerShellEditorServices.Test.E2E
2222
{
23-
2423
[Trait("Category", "DAP")]
2524
// ITestOutputHelper is injected by XUnit
2625
// https://xunit.net/docs/capturing-output

test/PowerShellEditorServices.Test.E2E/Hosts/DebugOutputStream.cs

-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ public DebugOutputStream(Stream? underlyingStream)
2929
if (segment.Array is null) { return; }
3030
LogData("➡️", segment.Array, segment.Offset, segment.Count);
3131
};
32-
3332
}
3433

3534
private static void LogData(string header, byte[] buffer, int offset, int count)

test/PowerShellEditorServices.Test.E2E/Hosts/IAsyncLanguageServerHost.cs

-1
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,3 @@ public interface IAsyncLanguageServerHost : IAsyncDisposable
2222
// Optional to implement if more is required than a simple stop
2323
async ValueTask IAsyncDisposable.DisposeAsync() => await Stop();
2424
}
25-

test/PowerShellEditorServices.Test.E2E/Hosts/PsesStdioLanguageServerProcessHost.cs

-1
Original file line numberDiff line numberDiff line change
@@ -82,4 +82,3 @@ private static string[] GeneratePsesArguments(bool isDebugAdapter)
8282

8383
private static string SingleQuoteEscape(string str) => $"'{str.Replace("'", "''")}'";
8484
}
85-

0 commit comments

Comments
 (0)