From cbb5d433b14ff5566d144478701c94fdabc30298 Mon Sep 17 00:00:00 2001 From: Michael Nebel Date: Fri, 12 Apr 2024 09:51:48 +0200 Subject: [PATCH] C#: Add change note. --- .../lib/change-notes/2024-04-12-suppress-nullable-warning.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 csharp/ql/lib/change-notes/2024-04-12-suppress-nullable-warning.md diff --git a/csharp/ql/lib/change-notes/2024-04-12-suppress-nullable-warning.md b/csharp/ql/lib/change-notes/2024-04-12-suppress-nullable-warning.md new file mode 100644 index 00000000000..241a67dddaf --- /dev/null +++ b/csharp/ql/lib/change-notes/2024-04-12-suppress-nullable-warning.md @@ -0,0 +1,4 @@ +--- +category: minorAnalysis +--- +* Extracting suppress nullable warning expressions did not work when applied directly to a method call (like `System.Console.Readline()!`). This has been fixed.