Skip to content

Commit c9e66e5

Browse files
committed
remove println, change array to abstractarray
1 parent 28a9506 commit c9e66e5

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/vlspec.jl

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,8 @@ function augment_encoding_type(x::AbstractDict, data::Vega.DataValuesNode)
3838
end
3939
end
4040

41-
function augment_encoding_type(x::Array, data::Vega.DataValuesNode)
42-
println(x)
41+
function augment_encoding_type(x::AbstractArray, data::Vega.DataValuesNode)
4342
x = [augment_encoding_type(k,data) for k in x]
44-
println(x)
4543
return x
4644
end
4745

0 commit comments

Comments
 (0)