@@ -716,7 +716,7 @@ function build_null_solution(prob::AbstractDEProblem, args...;
716716
717717 prob, success = hack_null_solution_init (prob)
718718 retcode = success ? ReturnCode. Success : ReturnCode. InitialFailure
719- build_solution (prob, nothing , ts, timeseries, retcode)
719+ build_solution (prob, nothing , ts, timeseries; retcode)
720720end
721721
722722function build_null_solution (
@@ -731,8 +731,7 @@ function build_null_solution(
731731 kwargs... )
732732 prob, success = hack_null_solution_init (prob)
733733 retcode = success ? ReturnCode. Success : ReturnCode. InitialFailure
734- SciMLBase. build_solution (prob, nothing , Float64[], nothing ;
735- retcode)
734+ SciMLBase. build_solution (prob, nothing , Float64[], nothing ; retcode)
736735end
737736
738737function build_null_solution (
@@ -752,8 +751,7 @@ function build_null_solution(
752751 retcode = norm (resid) < abstol ? ReturnCode. Success : ReturnCode. Failure
753752 end
754753
755- SciMLBase. build_solution (prob, nothing , Float64[], resid;
756- retcode)
754+ SciMLBase. build_solution (prob, nothing , Float64[], resid; retcode)
757755end
758756
759757"""
0 commit comments