mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
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:
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user