From 637c8a8ed2cfffa01cb9c51b3432164c84b56213 Mon Sep 17 00:00:00 2001 From: Daniel Schwabeneder Date: Sun, 29 Mar 2020 23:46:18 +0200 Subject: [PATCH] undo return statements --- src/series.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/series.jl b/src/series.jl index 014b2352..0596c764 100644 --- a/src/series.jl +++ b/src/series.jl @@ -42,9 +42,9 @@ series_vector(v::AVec{<:AbstractArray}, plotattributes) = # list of things (maybe other vectors, functions, or something else) function series_vector(v::AVec, plotattributes) if all(x -> x isa MaybeNumber, v) - return series_vector(Vector{MaybeNumber}(v), plotattributes) + series_vector(Vector{MaybeNumber}(v), plotattributes) elseif all(x -> x isa MaybeString, v) - return series_vector(Vector{MaybeString}(v), plotattributes) + series_vector(Vector{MaybeString}(v), plotattributes) else try series_vector(string.(v), plotattributes)