Fix bogus nullability errors from Rider.

None of these are actual nullability warnings but they make Rider shut up so.
This commit is contained in:
Pieter-Jan Briers
2020-08-25 17:48:23 +02:00
parent 584e540bb2
commit 7890c1b39c
5 changed files with 7 additions and 7 deletions

View File

@@ -240,7 +240,7 @@ namespace Robust.Shared.Prototypes
foreach (var (stream, filePath) in yamlStreams)
{
for (var i = 0; i < stream.Documents.Count; i++)
for (var i = 0; i < stream!.Documents.Count; i++)
{
try
{