From 965d77e749ea43274f0588f11564cf15ea3e9db6 Mon Sep 17 00:00:00 2001 From: juddmehr Date: Wed, 16 Oct 2024 14:01:24 -0600 Subject: [PATCH] remove unused variable --- src/C4Blade/C4Blade.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/C4Blade/C4Blade.jl b/src/C4Blade/C4Blade.jl index 84bb5528..c0ede8ad 100644 --- a/src/C4Blade/C4Blade.jl +++ b/src/C4Blade/C4Blade.jl @@ -97,7 +97,7 @@ struct Section{TFr,TFc,TFt,TAF} end # promote to same type, e.g., duals -function Section(r, chord, solidity, theta, af) +function Section(r, chord, theta, af) r, chord, theta = promote(r, chord, theta) return Section(r, chord, theta, af) end