Skip to content

Commit e104f30

Browse files
committed
Fixed warnings around nullable reference types
1 parent 323284e commit e104f30

5 files changed

+9
-7
lines changed

FubarDev.FtpServer.ruleset

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
<RuleSet Name="Regeln für FubarDev.FtpServer" Description="Codeanalyseregeln für FubarDev.FtpServer.csproj." ToolsVersion="14.0">
33
<Rules AnalyzerId="StyleCop.Analyzers" RuleNamespace="StyleCop.Analyzers">
44
<Rule Id="SA0001" Action="None" />
5+
<!-- StyleCop.Analyzers cannot handle C# 8.0 yet -->
6+
<Rule Id="SA1009" Action="None" />
57
<Rule Id="SA1101" Action="None" />
68
<Rule Id="SA1200" Action="None" />
79
<Rule Id="SA1309" Action="None" />

src/FubarDev.FtpServer/FtpConnection.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,7 @@ await _serverCommandExecutor.ExecuteAsync(response, cancellationToken)
463463
catch (Exception ex)
464464
{
465465
var exception = ex;
466-
while (exception is AggregateException aggregateException)
466+
while (exception is AggregateException aggregateException && aggregateException.InnerException != null)
467467
{
468468
exception = aggregateException.InnerException;
469469
}

src/FubarDev.FtpServer/FtpServer.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ await AddClientAsync(client)
188188
catch (Exception ex)
189189
{
190190
var exception = ex;
191-
while (exception is AggregateException aggregateException)
191+
while (exception is AggregateException aggregateException && aggregateException.InnerException != null)
192192
{
193193
exception = aggregateException.InnerException;
194194
}
@@ -292,9 +292,9 @@ await connection.StartAsync()
292292
}
293293
}
294294

295-
private void ConnectionOnClosed(object sender, EventArgs eventArgs)
295+
private void ConnectionOnClosed(object? sender, EventArgs eventArgs)
296296
{
297-
var connection = (IFtpConnection)sender;
297+
var connection = (IFtpConnection)(sender ?? throw new InvalidOperationException("Missing sender information."));
298298
if (!_connections.TryRemove(connection, out var info))
299299
{
300300
return;

src/FubarDev.FtpServer/ServerCommands/DelegateServerCommandExecutor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public Task ExecuteAsync(IServerCommand serverCommand, CancellationToken cancell
5151
_serverCommandHandlerDelegates.Add(serverCommandType, cmdDelegate);
5252
}
5353

54-
return (Task)cmdDelegate.DynamicInvoke(serverCommand, cancellationToken);
54+
return (Task)cmdDelegate.DynamicInvoke(serverCommand, cancellationToken)!;
5555
}
5656
}
5757
}

src/FubarDev.FtpServer/ServerCommands/ReflectionServerCommandExecutor.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ public Task ExecuteAsync(IServerCommand serverCommand, CancellationToken cancell
4040
var executeAsyncMethod = handlerType.GetRuntimeMethod("ExecuteAsync", new[] { serverCommandType, typeof(CancellationToken) });
4141
var handler = _ftpConnectionAccessor.FtpConnection.ConnectionServices.GetRequiredService(handlerType);
4242

43-
commandHandlerInfo = new CommandHandlerInfo(handler, executeAsyncMethod);
43+
commandHandlerInfo = new CommandHandlerInfo(handler, executeAsyncMethod!);
4444
_serverCommandHandlerInfo.Add(serverCommandType, commandHandlerInfo);
4545
}
4646

4747
return (Task)commandHandlerInfo.ExecuteMethodInfo.Invoke(
4848
commandHandlerInfo.CommandHandler,
49-
new object[] { serverCommand, cancellationToken });
49+
new object[] { serverCommand, cancellationToken })!;
5050
}
5151

5252
private class CommandHandlerInfo

0 commit comments

Comments
 (0)