Skip to content

Commit a9bba18

Browse files
fix: fix depwarn in EnsembleProblem constructor
1 parent 42cdf6a commit a9bba18

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ensemble/ensemble_problems.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ DEFAULT_OUTPUT_FUNC(sol, i) = (sol, false)
9595
DEFAULT_REDUCTION(u, data, I) = append!(u, data), false
9696
DEFAULT_VECTOR_PROB_FUNC(prob, i, repeat) = prob[i]
9797
function EnsembleProblem(prob::AbstractVector{<:AbstractSciMLProblem}; kwargs...)
98-
warn("This dispatch is deprecated for the standard ensemble syntax. See the Parallel
99-
Ensembles Simulations Interface page for more details")
98+
Base.depwarn("This dispatch is deprecated for the standard ensemble syntax. See the Parallel
99+
Ensembles Simulations Interface page for more details", :EnsembleProblem)
100100
invoke(EnsembleProblem,
101101
Tuple{Any},
102102
prob;

0 commit comments

Comments
 (0)