KalleOlaviNiemitalo commented on PR #1956: URL: https://github.com/apache/avro/pull/1956#issuecomment-1339635912
Between tags v6.0.0 and v7.0.0, src/libraries/System.CodeDom had changes: - explicitly disable nullable reference types, which dotnet/runtime v7.0.0 would otherwise enable by default - change target frameworks - remove dead assignments - switch ArgumentNullException checks to `!!` syntax, but later switch them back - remove private empty methods - make some methods static - remove dead code for Code Access Security support - fix tests - in VBCodeGenerator, use AsSpan rather than Substring - in VBCodeGenerator, don't use StringBuilder if only one string will be appended - suppress compatibility warnings caused by IntPtr becoming an integer type in .NET 7 - use `??=` operator So, there are some optimizations, but no new features and no bug fixes, except in tests. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
