Changes needed for new notnullableflaganalyzer (#12957)

This commit is contained in:
Paul Ritter
2022-12-11 00:19:37 +01:00
committed by GitHub
parent 95358f3b66
commit 5715b0c2be
4 changed files with 6 additions and 6 deletions

View File

@@ -81,7 +81,7 @@ namespace Content.Client.Changelog
return new List<ChangelogEntry>();
var node = (MappingDataNode)yamlData.Documents[0].RootNode.ToDataNode();
return _serialization.Read<List<ChangelogEntry>>(node["Entries"]);
return _serialization.Read<List<ChangelogEntry>>(node["Entries"], notNullableOverride: true);
});
}