remove StatsPlots recipe warning

This commit is contained in:
Daniel Schwabeneder 2020-05-06 21:44:50 +02:00
parent 28ebc0ccd8
commit c63a48201c

View File

@ -1108,12 +1108,6 @@ function RecipesPipeline.preprocess_attributes!(plotattributes::AKW)
plotattributes[:framestyle] = _framestyleAliases[plotattributes[:framestyle]]
end
# warnings for moved recipes
st = get(plotattributes, :seriestype, :path)
if st in (:boxplot, :violin, :density) && !isdefined(Main, :StatsPlots)
@warn("seriestype $st has been moved to StatsPlots. To use: \`Pkg.add(\"StatsPlots\"); using StatsPlots\`")
end
return
end