Skip to content

Commit

Permalink
no warn
Browse files Browse the repository at this point in the history
  • Loading branch information
neuecc committed Feb 17, 2025
1 parent a760036 commit 2377cfb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/R3.Godot/addons/R3.Godot/GodotSignalMapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ protected GodotSignalMapperBase(GodotObject obj, StringName signalName, Cancella
godotSignalName = signalName;
if (cancellationToken.CanBeCanceled)
{
cancellationTokenRegistration = cancellationToken.UnsafeRegister((state) => ((GodotSignalMapperBase<T>) state).Dispose(), this);
cancellationTokenRegistration = cancellationToken.UnsafeRegister((state) => ((GodotSignalMapperBase<T>) state!).Dispose(), this);
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/R3.Maui/R3.Maui.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Nullable>enable</Nullable>
<LangVersion>12</LangVersion>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>1701;1702;1591;1573</NoWarn>
<NoWarn>1701;1702;1591;1573;CS8002</NoWarn>

<!-- NuGet Packaging -->
<PackageId>R3Extensions.Maui</PackageId>
Expand Down
2 changes: 1 addition & 1 deletion src/R3.MonoGame/R3.MonoGame.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<LangVersion>12</LangVersion>

<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>1701;1702;1591;1573</NoWarn>
<NoWarn>1701;1702;1591;1573;CS8002</NoWarn>

<!-- NuGet Packaging -->
<PackageId>R3Extensions.MonoGame</PackageId>
Expand Down

0 comments on commit 2377cfb

Please sign in to comment.