Skip to content

Commit 9073ad1

Browse files
Update vector_of_array.jl
1 parent 3f4d399 commit 9073ad1

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/vector_of_array.jl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,6 @@ vecarr_to_vectors(VA::AbstractVectorOfArray) = [VA[i,:] for i in eachindex(VA[1]
7070
Base.show(io::IO, x::AbstractVectorOfArray) = show(io, x.u)
7171
Base.show(io::IO, m::MIME"text/plain", x::AbstractVectorOfArray) = show(io, m, x.u)
7272
Base.summary(A::AbstractVectorOfArray) = string("VectorOfArray{",eltype(A),",",ndims(A),"}")
73-
Base.print(A::AbstractVectorOfArray) = show(A)
74-
Base.println(A::AbstractVectorOfArray) = show(A)
7573

7674
Base.show(io::IO, x::AbstractDiffEqArray) = (print(io,"t: ");show(io, x.t);println(io);print(io,"u: ");show(io, x.u))
7775
Base.show(io::IO, m::MIME"text/plain", x::AbstractDiffEqArray) = (print(io,"t: ");show(io,m,x.t);println(io);print(io,"u: ");show(io,m,x.u))

0 commit comments

Comments
 (0)