Skip to content

Commit 466b825

Browse files
committed
fix comment formatting
1 parent d7c037d commit 466b825

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Flow.Launcher.Core/Plugin/JsonRPCPlugin.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -252,18 +252,16 @@ protected async Task<Stream> ExecuteAsync(ProcessStartInfo startInfo, Cancellati
252252

253253
token.Register(() =>
254254
{
255-
// ReSharper disable once AccessToDisposedClosure
256255
// ReSharper disable once AccessToModifiedClosure
257256
// Manually Check whether disposed
258257
if (!disposed && !process.HasExited)
259-
// ReSharper disable once AccessToDisposedClosure
260258
process.Kill();
261259
});
262260

263261
try
264262
{
265263
// token expire won't instantly trigger the exception,
266-
// manually kill process at before
264+
// manually kill process at before
267265
await source.CopyToAsync(buffer, token);
268266
}
269267
catch (OperationCanceledException)

0 commit comments

Comments
 (0)