From cab94505b646c0e3f1600e07273191c452027a79 Mon Sep 17 00:00:00 2001 From: Oscar Smith Date: Wed, 13 Nov 2024 20:05:28 -0500 Subject: [PATCH] adress review --- src/ODE_nlsolve.jl | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/ODE_nlsolve.jl b/src/ODE_nlsolve.jl index c6176f7c1..27b5382bf 100644 --- a/src/ODE_nlsolve.jl +++ b/src/ODE_nlsolve.jl @@ -42,10 +42,5 @@ struct ODE_NLProb{NLProb, UNLProb, NLProbMap, NLProbPmap} solved will be returned as-is. """ nlprobpmap::NLProbPmap - - function ODE_NLProb(nlprob::I, update_nlprob!::J, nlprobmap::K, - nlprobpmap::L) where {I, J, K, L} - return new{I, J, K, L}(nlprob, update_nlprob!, nlprobmap, nlprobpmap) - end end