Remove outdated NotNullWhen annotation (#29641)

A previous version of this function returned a bool. Since this no longer does that, remove the annotation.
This commit is contained in:
jmcb
2024-07-01 18:10:49 +01:00
committed by GitHub
parent 732489ee4a
commit ed2789a0e4

View File

@@ -39,7 +39,7 @@ namespace Content.Server.Atmos.Piping.Other.EntitySystems
_atmosphereSystem.Merge(environment, merger);
}
private float CapSpawnAmount(Entity<GasMinerComponent> ent, float toSpawnTarget, [NotNullWhen(true)] out GasMixture? environment)
private float CapSpawnAmount(Entity<GasMinerComponent> ent, float toSpawnTarget, out GasMixture? environment)
{
var (uid, miner) = ent;
var transform = Transform(uid);